handle space and plus in hotkeys

This commit is contained in:
dragonwocky 2021-10-31 12:21:02 +11:00
parent a497618ea4
commit 21c56590a5
2 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,7 @@
display: flex;
align-items: center;
justify-content: center;
background: var(--theme--bg_card);
background: var(--theme--tag_default) !important;
box-shadow: var(--theme--ui_shadow, rgba(15, 15, 15, 0.15)) 0px 0px 0px 1px,
var(--theme--ui_shadow, rgba(15, 15, 15, 0.15)) 0px 2px 4px !important;

View File

@ -187,6 +187,8 @@ const triggerHotkeyListener = (event, hotkey) => {
const pressed = modifiers[modifier].includes(key) && event[modifier];
if (pressed) return true;
}
if (key === 'space') key = ' ';
if (key === 'plus') key = '+';
if (key === event.key.toLowerCase()) return true;
});
if (pressed) hotkey.callback(event);