From 395dfff103e10687cb370cb3470ca667afd2acd5 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Wed, 29 Jan 2020 12:31:33 +0100 Subject: 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 --- source/blender/editors/space_action/action_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_action') 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 { -- cgit v1.2.3