Fix keyboard shortcut conflict for Show Player command

Changed Show Player shortcut from Cmd+O to Cmd+Shift+P to avoid
conflict with system Open command.
This commit is contained in:
Arkadiusz Fal
2025-11-20 00:23:27 +01:00
parent c1b23d20f2
commit 680ac9a8a0

View File

@@ -76,7 +76,7 @@ struct MenuCommands: Commands {
Button(togglePlayerLabel) {
PlayerModel.shared.togglePlayer()
}
.keyboardShortcut("o")
.keyboardShortcut("p", modifiers: [.command, .shift])
}
}