2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-07 06:50:48 +00:00

macOS: fix incorrect "Back" keyboard shortcut (fix #1426)

This commit is contained in:
Ronan Jouchet 2022-06-27 09:34:13 -04:00
parent 5146dc05e5
commit bac08394c5

View File

@ -153,7 +153,7 @@ export function generateMenu(
submenu: [ submenu: [
{ {
label: 'Back', label: 'Back',
accelerator: isOSX() ? 'CmdOrAlt+Left' : 'Alt+Left', accelerator: isOSX() ? 'Cmd+Left' : 'Alt+Left',
click: goBack, click: goBack,
}, },
{ {