mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Desktop: Tray: Exit -> Quit (#3945)
This commit is contained in:
parent
eca4e24362
commit
71bf0437c1
@ -425,7 +425,7 @@ class Application extends BaseApplication {
|
|||||||
const contextMenu = Menu.buildFromTemplate([
|
const contextMenu = Menu.buildFromTemplate([
|
||||||
{ label: _('Open %s', app.electronApp().name), click: () => { app.window().show(); } },
|
{ label: _('Open %s', app.electronApp().name), click: () => { app.window().show(); } },
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
{ label: _('Exit'), click: () => { app.quit(); } },
|
{ label: _('Quit'), click: () => { app.quit(); } },
|
||||||
]);
|
]);
|
||||||
app.createTray(contextMenu);
|
app.createTray(contextMenu);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user