forked from profectus/Profectus
Allow both cases in shift+hotkeys
This commit is contained in:
parent
a39e65852d
commit
b204e3cc42
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ document.onkeydown = function (e) {
|
|||
if (e.ctrlKey) {
|
||||
key = "ctrl+" + key;
|
||||
}
|
||||
const hotkey = hotkeys[key];
|
||||
const hotkey = hotkeys[key] ?? hotkeys[key.toLowerCase()];
|
||||
if (hotkey && unref(hotkey.enabled)) {
|
||||
e.preventDefault();
|
||||
hotkey.onPress();
|
||||
|
|
Loading…
Reference in a new issue