diff --git a/frontend/src/views/main.ts b/frontend/src/views/main.ts index 000adfb..196fb45 100644 --- a/frontend/src/views/main.ts +++ b/frontend/src/views/main.ts @@ -581,7 +581,7 @@ export class MainView extends View { } private handleHotkey(e: KeyboardEvent) { - if (e.altKey) { + if (e.ctrlKey || e.metaKey) { const action = this.hotkeyMap.get(e.key); if (action) { e.preventDefault();