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>2014-04-17 07:02:03 +0400
committerJoshua Leung <aligorith@gmail.com>2014-04-17 07:02:23 +0400
commit64f3774d6272d3071ed4d0bf90be2a6ca5a2e854 (patch)
treeffb7902e73d3b553e1b9c683654a2a676a551996
parenta5b9f22454cc36c8811b10fe65d40ec900497922 (diff)
Fix T39768: GLOBAL_X/Y/Z don't exist for bpy.ops.armature.calculate_roll type enum
-rw-r--r--source/blender/editors/armature/armature_edit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/armature/armature_edit.c b/source/blender/editors/armature/armature_edit.c
index 4e81430b339..24d941e822b 100644
--- a/source/blender/editors/armature/armature_edit.c
+++ b/source/blender/editors/armature/armature_edit.c
@@ -260,9 +260,9 @@ static EnumPropertyItem prop_calc_roll_types[] = {
{CALC_ROLL_TAN_X, "X", 0, "Local X Tangent", ""},
{CALC_ROLL_TAN_Z, "Z", 0, "Local Z Tangent", ""},
- {CALC_ROLL_X, "X", 0, "Global X Axis", ""},
- {CALC_ROLL_Y, "Y", 0, "Global Y Axis", ""},
- {CALC_ROLL_Z, "Z", 0, "Global Z Axis", ""},
+ {CALC_ROLL_X, "GLOBAL_X", 0, "Global X Axis", ""},
+ {CALC_ROLL_Y, "GLOBAL_Y", 0, "Global Y Axis", ""},
+ {CALC_ROLL_Z, "GLOBAL_Z", 0, "Global Z Axis", ""},
{CALC_ROLL_ACTIVE, "ACTIVE", 0, "Active Bone", ""},
{CALC_ROLL_VIEW, "VIEW", 0, "View Axis", ""},