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>2018-07-11 14:02:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-07-11 14:02:22 +0300
commit1d83fe82bc265391635b8bc642cad5e4fc8d0004 (patch)
tree0c75be5d6bcd7880634e9685175bb494e585502e /source/blender/editors/armature/pose_edit.c
parentef30fa3739a5d23a8c9acfbfc12f0f612e59dc89 (diff)
Cleanup: simplify RNA names
Diffstat (limited to 'source/blender/editors/armature/pose_edit.c')
-rw-r--r--source/blender/editors/armature/pose_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/armature/pose_edit.c b/source/blender/editors/armature/pose_edit.c
index 661492ba056..39f532ef1db 100644
--- a/source/blender/editors/armature/pose_edit.c
+++ b/source/blender/editors/armature/pose_edit.c
@@ -1256,7 +1256,7 @@ void POSE_OT_quaternions_flip(wmOperatorType *ot)
static int toggle_bone_selection_exec(bContext *C, wmOperator *UNUSED(op))
{
View3D *v3d = CTX_wm_view3d(C);
- v3d->overlay.flag ^= V3D_OVERLAY_BONE_SELECTION;
+ v3d->overlay.flag ^= V3D_OVERLAY_BONE_SELECT;
ED_view3d_shade_update(CTX_data_main(C), v3d, CTX_wm_area(C));
WM_event_add_notifier(C, NC_SPACE | ND_SPACE_VIEW3D, v3d);
return OPERATOR_FINISHED;