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:
authorCampbell Barton <ideasman42@gmail.com>2019-01-16 03:16:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-16 03:17:13 +0300
commit976917e8cf7a1bb19aa961e0fd6c6be3c64f7987 (patch)
treea4897406aa39589e7970e823f374092eb3d34a3f /source/blender/editors/armature/pose_edit.c
parentf027cbeeb9cca4fe241bd5c4688d9ceec937840c (diff)
Cleanup: de-duplicate rotation mode enum
Diffstat (limited to 'source/blender/editors/armature/pose_edit.c')
-rw-r--r--source/blender/editors/armature/pose_edit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/armature/pose_edit.c b/source/blender/editors/armature/pose_edit.c
index 71eca30e7ee..827dcf50f44 100644
--- a/source/blender/editors/armature/pose_edit.c
+++ b/source/blender/editors/armature/pose_edit.c
@@ -684,7 +684,8 @@ void POSE_OT_rotation_mode_set(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
/* properties */
- ot->prop = RNA_def_enum(ot->srna, "type", rna_enum_posebone_rotmode_items, 0, "Rotation Mode", "");
+ ot->prop = RNA_def_enum(
+ ot->srna, "type", rna_enum_object_rotation_mode_items, 0, "Rotation Mode", "");
}
/* ********************************************** */