Commit: bac78e9bbe1fa4ab13c0fc07b35e431dfb551610
Author: Antonio Vazquez
Date:   Mon Mar 28 13:11:00 2022 +0200
Branches: blender-v3.1-release
https://developer.blender.org/rBbac78e9bbe1fa4ab13c0fc07b35e431dfb551610

Fix T96828: GPencil primitives handlers not working

Following the logic is not necessary to check the mouse button because the 
status has changed before.

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

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

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

diff --git a/source/blender/editors/gpencil/gpencil_primitive.c 
b/source/blender/editors/gpencil/gpencil_primitive.c
index 2715491414a..9b94d2dfd7c 100644
--- a/source/blender/editors/gpencil/gpencil_primitive.c
+++ b/source/blender/editors/gpencil/gpencil_primitive.c
@@ -1497,7 +1497,7 @@ static void gpencil_primitive_edit_event_handling(
       break;
     }
     case MOUSEMOVE: {
-      if ((event->val == KM_PRESS) && tgpi->sel_cp != SELECT_NONE) {
+      if (tgpi->sel_cp != SELECT_NONE) {
         if (tgpi->sel_cp == SELECT_START && tgpi->tot_stored_edges == 0) {
           copy_v2_v2(tgpi->start, tgpi->mval);
         }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to