fix: change keyboard short to go home on macos (#29929)

This commit is contained in:
Florian Duros
2025-05-13 10:03:28 +02:00
committed by GitHub
parent 64047b0702
commit 10757b4357

View File

@@ -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"),
},