Format new menu items

This commit is contained in:
TC
2021-03-31 20:15:55 +02:00
parent 76f88686da
commit 5671b99b7e

17
menu.js
View File

@ -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();
},
},
],
},
];