From ac6d59db6911759d166642e0ff37005f3190b4e1 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 7 May 2018 18:06:16 +0200 Subject: [PATCH] Fix ARMATURE_OT_layers_show_all now works with COW --- 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 4d29bef63ee..d20a9b7ee8a 100644 --- a/source/blender/editors/armature/pose_edit.c +++ b/source/blender/editors/armature/pose_edit.c @@ -819,6 +819,7 @@ static int pose_armature_layers_showall_exec(bContext *C, wmOperator *op) /* note, notifier might evolve */ WM_event_add_notifier(C, NC_OBJECT | ND_POSE, ob); + DEG_id_tag_update(&arm->id, DEG_TAG_COPY_ON_WRITE); /* done */ return OPERATOR_FINISHED;