[Bf-blender-cvs] [b32e8e5ba7d] master: Gpencil: Fix missing change in previous commit

Antonio Vazquez noreply at git.blender.org
Thu Jan 21 16:09:44 CET 2021


Commit: b32e8e5ba7da65e1d9360773146b09e633ab9abf
Author: Antonio Vazquez
Date:   Thu Jan 21 16:04:12 2021 +0100
Branches: master
https://developer.blender.org/rBb32e8e5ba7da65e1d9360773146b09e633ab9abf

Gpencil: Fix missing change in previous commit 

This was related to the changes for Layer and Frame duplication.

===================================================================

M	source/blender/editors/gpencil/gpencil_data.c

===================================================================

diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c
index 27e5ba1a30a..e297a806895 100644
--- a/source/blender/editors/gpencil/gpencil_data.c
+++ b/source/blender/editors/gpencil/gpencil_data.c
@@ -2862,7 +2862,7 @@ int ED_gpencil_join_objects_exec(bContext *C, wmOperator *op)
         mul_v3_m3v3(offset_local, imat, offset_global);
 
         LISTBASE_FOREACH (bGPDlayer *, gpl_src, &gpd_src->layers) {
-          bGPDlayer *gpl_new = BKE_gpencil_layer_duplicate(gpl_src);
+          bGPDlayer *gpl_new = BKE_gpencil_layer_duplicate(gpl_src, true, true);
           float diff_mat[4][4];
           float inverse_diff_mat[4][4];



More information about the Bf-blender-cvs mailing list