Fix: Box select not working with tweak took in VSE

Use Select Box tool by default.

After 618f39fca2 box select operator is not run with tweak tool. This
is regression for sequencer, but the new behavior is consistent with
other editors.
This commit is contained in:
Richard Antalik 2023-09-19 17:53:13 +02:00
parent d61295155c
commit cabf935afb
1 changed files with 2 additions and 2 deletions

View File

@ -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";
}