Skip to content

Commit 10757b4

Browse files
authored
fix: change keyboard short to go home on macos (#29929)
1 parent 64047b0 commit 10757b4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/accessibility/KeyboardShortcuts.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,8 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = {
521521
[KeyBindingAction.GoToHome]: {
522522
default: {
523523
ctrlKey: true,
524-
altKey: true,
524+
altKey: !IS_MAC,
525+
shiftKey: IS_MAC,
525526
key: Key.H,
526527
},
527528
displayName: _td("keyboard|go_home_view"),
@@ -586,7 +587,7 @@ export const KEYBOARD_SHORTCUTS: IKeyboardShortcuts = {
586587
default: {
587588
ctrlKey: true,
588589
shiftKey: true,
589-
key: Key.H,
590+
key: Key.J,
590591
},
591592
displayName: _td("keyboard|toggle_hidden_events"),
592593
},

0 commit comments

Comments
 (0)