[Bf-blender-cvs] [395dfff103e] master: Dopesheet: Avoid deselect-all triggering on every box-select

Julian Eisel noreply at git.blender.org
Wed Jan 29 12:39:44 CET 2020


Commit: 395dfff103e10687cb370cb3470ca667afd2acd5
Author: Julian Eisel
Date:   Wed Jan 29 12:31:33 2020 +0100
Branches: master
https://developer.blender.org/rB395dfff103e10687cb370cb3470ca667afd2acd5

Dopesheet: Avoid deselect-all triggering on every box-select

This wouldn't only behave glitchy, but break certain copy-paste
workflows. See T70457 for details.

Addresses T70457

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

M	source/blender/editors/space_action/action_select.c

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

diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index ca6efb5f69e..09a0c297d35 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -1718,7 +1718,7 @@ static int mouse_action_keys(bAnimContext *ac,
     /* reset selection mode for next steps */
     select_mode = SELECT_ADD;
 
-    if (wait_to_deselect_others && is_selected) {
+    if (wait_to_deselect_others) {
       ret_value = OPERATOR_RUNNING_MODAL;
     }
     else {



More information about the Bf-blender-cvs mailing list