From 2029697861d7a9a35eec8d0c3839a424b367fb8a Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 19 Apr 2018 12:36:44 +0200 Subject: [PATCH] Fix: Armature display settings (names, axes, shapes, etc.) didn't refresh view with Copy on Write enabled Now we need to tag the depsgraph to inform all copies that stuff changed. --- source/blender/makesrna/intern/rna_armature.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c index 3afa682e75f..1747d2fbc23 100644 --- a/source/blender/makesrna/intern/rna_armature.c +++ b/source/blender/makesrna/intern/rna_armature.c @@ -147,6 +147,7 @@ static void rna_Armature_redraw_data(Main *UNUSED(bmain), Scene *UNUSED(scene), { ID *id = ptr->id.data; + DEG_id_tag_update(id, DEG_TAG_COPY_ON_WRITE); WM_main_add_notifier(NC_GEOM | ND_DATA, id); }