explicitly hide because setApplicationMenu on Linux otherwise shows...

https://github.com/electron/electron/issues/9621

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/4012/head
Michael Telatynski 2017-05-30 12:33:32 +01:00
parent 9c25aab509
commit c54e2a30b6
1 changed files with 4 additions and 0 deletions

View File

@ -236,6 +236,10 @@ electron.app.on('ready', () => {
mainWindow.loadURL(`file://${__dirname}/../../webapp/index.html`);
electron.Menu.setApplicationMenu(vectorMenu);
// explicitly hide because setApplicationMenu on Linux otherwise shows...
// https://github.com/electron/electron/issues/9621
mainWindow.hide();
// Create trayIcon icon
tray.create(mainWindow, {
icon_path: iconPath,