issue 2813 add app name after Quit

Adding the application name after the Quit string for Mac OS systems.
This commit is contained in:
Josh Bernitt
2016-06-09 15:44:32 -04:00
committed by Cheng Zhao
parent 21081549fd
commit 4219513457

View File

@@ -204,7 +204,7 @@ app.once('ready', () => {
type: 'separator'
},
{
label: 'Quit',
label: 'Quit ' + app.getName(),
accelerator: 'Command+Q',
click () { app.quit() }
}