From e52dce6408aa742bf1ca1c7474a390b7efcba48e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 30 Apr 2018 16:27:24 +0200 Subject: Animation: Don't user-copunter copy-on-written action block --- source/blender/makesrna/intern/rna_animation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_animation.c') diff --git a/source/blender/makesrna/intern/rna_animation.c b/source/blender/makesrna/intern/rna_animation.c index 3c940e3dcbf..6eed4153e0d 100644 --- a/source/blender/makesrna/intern/rna_animation.c +++ b/source/blender/makesrna/intern/rna_animation.c @@ -601,7 +601,7 @@ bool rna_AnimaData_override_apply( if (adt_dst == NULL && adt_src != NULL) { /* Copy anim data from reference into final local ID. */ - BKE_animdata_copy_id(NULL, ptr_dst->id.data, ptr_src->id.data, false); + BKE_animdata_copy_id(NULL, ptr_dst->id.data, ptr_src->id.data, false, true); return true; } else if (adt_dst != NULL && adt_src == NULL) { -- cgit v1.2.3