From 299b51dc83aa857117ce0007904c41f86dbc2037 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Fri, 12 Oct 2018 14:56:13 -0300 Subject: [PATCH] POSE_OT_rotation_mode_set: Adding missing notifier Otherwise the space button does not redraw. --- source/blender/editors/armature/pose_edit.c | 1 + 1 file changed, 1 insertion(+) 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; } }