[Bf-blender-cvs] [367e309fe89] temp-lineart-contained: GPencil: Remove `B` key to create Blank Keyframe in Drawing mode

Antonio Vazquez noreply at git.blender.org
Wed May 12 04:15:51 CEST 2021


Commit: 367e309fe89228ae630f1e0ffd55814a445c392f
Author: Antonio Vazquez
Date:   Mon May 10 16:34:27 2021 +0200
Branches: temp-lineart-contained
https://developer.blender.org/rB367e309fe89228ae630f1e0ffd55814a445c392f

GPencil: Remove `B` key to create Blank Keyframe in Drawing mode

We have the `I` menu for that. This is part of the old code.

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

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

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

diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index d072d8a35df..9bd929aa2af 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -3677,14 +3677,6 @@ static int gpencil_draw_modal(bContext *C, wmOperator *op, const wmEvent *event)
        *   is essential for ensuring that they can quickly return to that view
        */
     }
-    else if ((event->type == EVT_BKEY) && (event->val == KM_RELEASE)) {
-      /* Add Blank Frame
-       * - Since this operator is non-modal, we can just call it here, and keep going...
-       * - This operator is especially useful when animating
-       */
-      WM_operator_name_call(C, "GPENCIL_OT_blank_frame_add", WM_OP_EXEC_DEFAULT, NULL);
-      estate = OPERATOR_RUNNING_MODAL;
-    }
     else if ((!ELEM(p->paintmode, GP_PAINTMODE_ERASER, GP_PAINTMODE_SET_CP))) {
       gpencil_guide_event_handling(C, op, event, p);
       estate = OPERATOR_RUNNING_MODAL;



More information about the Bf-blender-cvs mailing list