From a6f7f25dc058afb26d402acdf806e6f7725d3d11 Mon Sep 17 00:00:00 2001 From: Florian Duros Date: Mon, 12 May 2025 17:59:48 +0200 Subject: [PATCH] fix: change keyboard short to go home on macos --- src/accessibility/KeyboardShortcuts.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/accessibility/KeyboardShortcuts.ts b/src/accessibility/KeyboardShortcuts.ts index da0097f4b27..ec5b8312b92 100644 --- a/src/accessibility/KeyboardShortcuts.ts +++ b/src/accessibility/KeyboardShortcuts.ts @@ -521,7 +521,8 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { [KeyBindingAction.GoToHome]: { default: { ctrlKey: true, - altKey: true, + altKey: !IS_MAC, + shiftKey: IS_MAC, key: Key.H, }, displayName: _td("keyboard|go_home_view"), @@ -586,7 +587,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = { default: { ctrlKey: true, shiftKey: true, - key: Key.H, + key: Key.J, }, displayName: _td("keyboard|toggle_hidden_events"), },