diff --git a/main.js b/main.js index cf57f8a9..fe8a43a0 100644 --- a/main.js +++ b/main.js @@ -131,19 +131,6 @@ function menu_build() { } } }, - { - label: "Save PGN...", - accelerator: "CommandOrControl+S", - click: () => { - let file = electron.dialog.showSaveDialog(); - if (file && file.length > 0) { - windows.send("main-window", "call", { - fn: "save", - args: [file] - }); - } - } - }, { label: "Validate PGN...", click: () => { @@ -158,6 +145,19 @@ function menu_build() { } } }, + { + label: "Save this game...", + accelerator: "CommandOrControl+S", + click: () => { + let file = electron.dialog.showSaveDialog(); + if (file && file.length > 0) { + windows.send("main-window", "call", { + fn: "save", + args: [file] + }); + } + } + }, { type: "separator" },