Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2009-03-02 03:55:10 +0300
committerJoshua Leung <aligorith@gmail.com>2009-03-02 03:55:10 +0300
commitd52212c73e12287c88036ba5e82a6cb647342012 (patch)
treea8947605fb97c2ad58617e2fe4d6724a838618c0 /source/blender/makesrna/intern/rna_pose.c
parent6888f540e8ebee25c94db67474c48dd7c249bdf9 (diff)
2.5 - Various animation bugfixes for samples
Diffstat (limited to 'source/blender/makesrna/intern/rna_pose.c')
-rwxr-xr-xsource/blender/makesrna/intern/rna_pose.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_pose.c b/source/blender/makesrna/intern/rna_pose.c
index f3fd9350710..d18b01ecc16 100755
--- a/source/blender/makesrna/intern/rna_pose.c
+++ b/source/blender/makesrna/intern/rna_pose.c
@@ -139,11 +139,10 @@ static void rna_def_pose_channel(BlenderRNA *brna)
prop= RNA_def_property(srna, "euler_rotation", PROP_FLOAT, PROP_ROTATION);
RNA_def_property_float_sdna(prop, NULL, "eul");
- RNA_def_property_ui_text(prop, "Rotation", "Rotation in Eulers.");
+ RNA_def_property_ui_text(prop, "Rotation (Euler)", "Rotation in Eulers.");
prop= RNA_def_property(srna, "rotation_mode", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "rotmode");
- RNA_def_property_flag(prop, PROP_NOT_EDITABLE);
RNA_def_property_enum_items(prop, prop_rotmode_items);
RNA_def_property_ui_text(prop, "Rotation Mode", "");