[Bf-blender-cvs] [d8a80e5949e] master: Revert "Fix T59358: Wrong status bar keymap for release confirms and right click select."

Germano Cavalcante noreply at git.blender.org
Thu Sep 3 17:34:15 CEST 2020


Commit: d8a80e5949e454d8e326f54abf0ef9a0bc3aeb83
Author: Germano Cavalcante
Date:   Thu Sep 3 12:33:28 2020 -0300
Branches: master
https://developer.blender.org/rBd8a80e5949e454d8e326f54abf0ef9a0bc3aeb83

Revert "Fix T59358: Wrong status bar keymap for release confirms and right click select."

This reverts commit 17905e89a72dcd816efb51b7403e6c01bc3e71e8.
Fix T80429: Transform Tools cannot be cancelled

rB17905e89 better filtered the key items that should appear in the
status bar.

But it is very restrictive since canceling is still possible in other
cases.


# Conflicts:
#	source/blender/editors/transform/transform.c

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

M	source/blender/editors/transform/transform.c

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

diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 11f0e791d14..4beafc6d363 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -567,9 +567,9 @@ static bool transform_modal_item_poll(const wmOperator *op, int value)
   const TransInfo *t = op->customdata;
   switch (value) {
     case TFM_MODAL_CANCEL: {
-      if ((t->flag & T_RELEASE_CONFIRM) && ISMOUSE(t->launch_event)) {
-        return false;
-      }
+      /* TODO: Canceling with LMB is not possible when the operator is activated
+       * through tweak and the LMB is pressed.
+       * Therefore, this item should not appear in the status bar. */
       break;
     }
     case TFM_MODAL_PROPSIZE:



More information about the Bf-blender-cvs mailing list