From 4de9fe60aea04e07df07e3154cd273e4f4917750 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Gy=C3=B6ngy=C3=B6si?= Date: Mon, 10 Feb 2025 17:16:34 +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`=20(#28577)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Florian D --- 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 e3c83d72acd..d5c32d6d8d1 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,