From 5671b99b7ec24dd4148c3cf04462af61b617813a Mon Sep 17 00:00:00 2001 From: TC Date: Wed, 31 Mar 2021 20:15:55 +0200 Subject: [PATCH] Format new menu items --- menu.js | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/menu.js b/menu.js index 3f5744b4..24895c61 100644 --- a/menu.js +++ b/menu.js @@ -220,13 +220,18 @@ const mainMenuTemplate = (win) => [ }, }, { - label: 'Restart App', - click: () => {app.relaunch(); app.quit();} - } , + label: "Restart App", + click: () => { + app.relaunch(); + app.quit(); + }, + }, { - label: 'Quit App', - click: () => {app.quit();} - } + label: "Quit App", + click: () => { + app.quit(); + }, + }, ], }, ];