From a95d3355864f090b69d26f4488c28e2c799128fa Mon Sep 17 00:00:00 2001 From: fohristiwhirl Date: Sat, 22 Jun 2019 17:16:03 +0100 Subject: [PATCH] Update main.js --- main.js | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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" },