From bf4caf1bd2a019f8246b135f22361eb1cc93cf2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Gy=C3=B6ngy=C3=B6si?= Date: Tue, 26 Nov 2024 18:28:48 +0100 Subject: [PATCH] =?UTF-8?q?Change=20`GoToHome`=20keyboard=20shortcut=20to?= =?UTF-8?q?=20`Ctrl`=E2=80=93`Alt`/`Shift`=E2=80=93`H`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/accessibility/KeyboardShortcuts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/accessibility/KeyboardShortcuts.ts b/src/accessibility/KeyboardShortcuts.ts index bdc0123ee7d..da8c20a4f9a 100644 --- a/src/accessibility/KeyboardShortcuts.ts +++ b/src/accessibility/KeyboardShortcuts.ts @@ -520,7 +520,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { }, [KeyBindingAction.GoToHome]: { default: { - ctrlOrCmdKey: true, + ctrlKey: true, altKey: !IS_MAC, shiftKey: IS_MAC, key: Key.H,