[Bf-blender-cvs] [27e39cc5331] master: GPencil: Add always empty frame when add new layer

Antonio Vazquez noreply at git.blender.org
Thu Apr 16 22:43:56 CEST 2020


Commit: 27e39cc533125b4589f469f2c9c595796bb95423
Author: Antonio Vazquez
Date:   Thu Apr 16 22:43:41 2020 +0200
Branches: master
https://developer.blender.org/rB27e39cc533125b4589f469f2c9c595796bb95423

GPencil: Add always empty frame when add new layer

The dopesheet needs to have a frame to display the channel, so an empty frame is created in the current frame.

See T66505 for details of why an empty channel cannot be displayed.

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

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 1e49195140c..c05162510d7 100644
--- a/source/blender/editors/gpencil/gpencil_data.c
+++ b/source/blender/editors/gpencil/gpencil_data.c
@@ -241,10 +241,8 @@ static int gp_layer_add_exec(bContext *C, wmOperator *op)
     if ((ob != NULL) && (ob->type == OB_GPENCIL)) {
       gpd = (bGPdata *)ob->data;
       bGPDlayer *gpl = BKE_gpencil_layer_addnew(gpd, DATA_("GP_Layer"), true);
-      ScrArea *area = CTX_wm_area(C);
-
-      /* In dopesheet add a new frame. */
-      if ((gpl != NULL) && (area->spacetype == SPACE_ACTION)) {
+      /* Add a new frame to make it visible in Dopesheet. */
+      if (gpl != NULL) {
         gpl->actframe = BKE_gpencil_layer_frame_get(gpl, CFRA, GP_GETFRAME_ADD_NEW);
       }
     }



More information about the Bf-blender-cvs mailing list