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:
authorDalai Felinto <dfelinto@gmail.com>2018-10-12 20:56:13 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-10-12 20:56:13 +0300
commit299b51dc83aa857117ce0007904c41f86dbc2037 (patch)
treeff4faf6e019b63e412a9908bdb246f67fd4e28f3 /source/blender
parent3b9b6a80ba6311281bb90e2a2e63a8c34a0b575d (diff)
POSE_OT_rotation_mode_set: Adding missing notifier
Otherwise the space button does not redraw.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/armature/pose_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/armature/pose_edit.c b/source/blender/editors/armature/pose_edit.c
index 8df712cd8d8..890e2b73601 100644
--- a/source/blender/editors/armature/pose_edit.c
+++ b/source/blender/editors/armature/pose_edit.c
@@ -844,6 +844,7 @@ static int pose_bone_rotmode_exec(bContext *C, wmOperator *op)
/* Notifiers and updates. */
DEG_id_tag_update((ID *)ob, OB_RECALC_DATA);
WM_event_add_notifier(C, NC_OBJECT | ND_TRANSFORM, ob);
+ WM_event_add_notifier(C, NC_OBJECT | ND_BONE_SELECT, ob);
prev_ob = ob;
}
}