From ccc48bf27eaa6651674a857a95884d821e42e1a7 Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Tue, 22 Jan 2019 20:24:33 +0100 Subject: Fix T60602: outliner pose bone selection does not update in viewport. Differential Revision: https://developer.blender.org/D4223 --- source/blender/editors/armature/pose_select.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/editors/armature/pose_select.c') diff --git a/source/blender/editors/armature/pose_select.c b/source/blender/editors/armature/pose_select.c index 1916495465c..3f582c7ada2 100644 --- a/source/blender/editors/armature/pose_select.c +++ b/source/blender/editors/armature/pose_select.c @@ -107,8 +107,7 @@ void ED_pose_bone_select_tag_update(Object *ob) DEG_id_tag_update(&ob->id, ID_RECALC_GEOMETRY); } - /* copy on write tag is needed (for the armature), or else no refresh happens */ - DEG_id_tag_update(&arm->id, ID_RECALC_COPY_ON_WRITE); + DEG_id_tag_update(&arm->id, ID_RECALC_SELECT); } -- cgit v1.2.3