Fix T39768: GLOBAL_X/Y/Z don't exist for bpy.ops.armature.calculate_roll type enum

This commit is contained in:
Joshua Leung 2014-04-17 15:02:03 +12:00
parent a5b9f22454
commit 64f3774d62
Notes: blender-bot 2023-02-14 10:47:23 +01:00
Referenced by issue #39768, bpy.ops.armature.calculate_roll wrong type enum
1 changed files with 3 additions and 3 deletions

View File

@ -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", ""},