Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Eisel <eiseljulian@gmail.com>2020-01-29 14:31:33 +0300
committerJulian Eisel <eiseljulian@gmail.com>2020-01-29 14:38:16 +0300
commit395dfff103e10687cb370cb3470ca667afd2acd5 (patch)
tree83635e37f7a0315b75bdaf9c80e7ede64915d375 /source/blender/editors/space_action/action_select.c
parenta4842eb8db7eae6da1da3a95f9c66c9530921fe3 (diff)
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
Diffstat (limited to 'source/blender/editors/space_action/action_select.c')
-rw-r--r--source/blender/editors/space_action/action_select.c2
1 files changed, 1 insertions, 1 deletions
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 {