[Bf-blender-cvs] [10e05bb4139] master: GPencil Cleanup: Remove legacy key to cancel drawing

Falk David noreply at git.blender.org
Mon Mar 29 15:56:35 CEST 2021


Commit: 10e05bb413947c16f61e0c429b2a3883ab95c983
Author: Falk David
Date:   Mon Mar 29 15:56:20 2021 +0200
Branches: master
https://developer.blender.org/rB10e05bb413947c16f61e0c429b2a3883ab95c983

GPencil Cleanup: Remove legacy key to cancel drawing

The 'E' key was set to cancel drawing. This was a change in the
old grease pencil system and is no longer used.

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

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 1217a3a7e8f..beaa5f9b64f 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -3691,7 +3691,7 @@ static int gpencil_draw_modal(bContext *C, wmOperator *op, const wmEvent *event)
   /* Exit painting mode (and/or end current stroke).
    *
    */
-  if (ELEM(event->type, EVT_RETKEY, EVT_PADENTER, EVT_ESCKEY, EVT_SPACEKEY, EVT_EKEY)) {
+  if (ELEM(event->type, EVT_RETKEY, EVT_PADENTER, EVT_ESCKEY, EVT_SPACEKEY)) {
 
     p->status = GP_STATUS_DONE;
     estate = OPERATOR_FINISHED;



More information about the Bf-blender-cvs mailing list