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:
authorSebastian Parborg <zeddb>2019-01-22 22:24:33 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-22 22:24:42 +0300
commitccc48bf27eaa6651674a857a95884d821e42e1a7 (patch)
treeaf37ff1023519ba8aaa49759ff1f3b24b52c9618 /source/blender/editors/armature/pose_select.c
parenta34297a6d64d1a44a504e93a8a6cd383aa014382 (diff)
Fix T60602: outliner pose bone selection does not update in viewport.
Differential Revision: https://developer.blender.org/D4223
Diffstat (limited to 'source/blender/editors/armature/pose_select.c')
-rw-r--r--source/blender/editors/armature/pose_select.c3
1 files changed, 1 insertions, 2 deletions
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);
}