Hide electron menubar

Closes #265
This commit is contained in:
Farkas József
2017-02-12 23:01:03 +01:00
parent e87f64b5e3
commit 25aa61295d

View File

@@ -15,6 +15,7 @@ function createWindow() {
}, },
icon: 'images/favicon.ico' icon: 'images/favicon.ico'
}); });
win.setMenuBarVisibility(false);
win.maximize(); win.maximize();
const indexPath = path.resolve(__dirname, './index.html'); const indexPath = path.resolve(__dirname, './index.html');