Revert "Fix: Box select not working with tweak took in VSE"

This reverts commit cabf935afb.

After more investigation I have realized, that this change introduces
another regression and more importantly it is not suited for RCS keymap.
This commit is contained in:
Richard Antalik 2023-09-19 23:23:07 +02:00
parent 8cc91fac90
commit 264c3e7bd7
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_box";
return "builtin.select";
case SEQ_VIEW_PREVIEW:
return "builtin.sample";
case SEQ_VIEW_SEQUENCE_PREVIEW:
return "builtin.select_box";
return "builtin.select";
}
return "builtin.select_box";
}