From 0e90614009e0fd8acb7e225344e922eb6f893beb Mon Sep 17 00:00:00 2001 From: Talon Date: Fri, 30 Aug 2024 16:19:47 +0200 Subject: [PATCH] Swap alt for ctrl/meta key --- frontend/src/views/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();