From cabf935afb77811c917fccd2952f097aa372f181 Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Tue, 19 Sep 2023 17:53:13 +0200 Subject: [PATCH] Fix: Box select not working with tweak took in VSE Use Select Box tool by default. After 618f39fca23 box select operator is not run with tweak tool. This is regression for sequencer, but the new behavior is consistent with other editors. --- source/blender/windowmanager/intern/wm_toolsystem.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_toolsystem.cc b/source/blender/windowmanager/intern/wm_toolsystem.cc index 2366a2251c6..d03ea5684bd 100644 --- a/source/blender/windowmanager/intern/wm_toolsystem.cc +++ b/source/blender/windowmanager/intern/wm_toolsystem.cc @@ -748,11 +748,11 @@ static const char *toolsystem_default_tool(const bToolKey *tkey) case SPACE_SEQ: { switch (tkey->mode) { case SEQ_VIEW_SEQUENCE: - return "builtin.select"; + return "builtin.select_box"; case SEQ_VIEW_PREVIEW: return "builtin.sample"; case SEQ_VIEW_SEQUENCE_PREVIEW: - return "builtin.select"; + return "builtin.select_box"; } return "builtin.select_box"; }