1
Fork 0

Added more props to window

This commit is contained in:
Jake Howard 2015-11-04 21:12:09 +00:00
parent 49079e4d7d
commit 7fb267bdf8
1 changed files with 4 additions and 1 deletions

View File

@ -32,7 +32,10 @@ app.on('ready', function () {
mainWindow = new BrowserWindow({
width: 800,
height: 600,
frame: false
frame: false,
resizable: false,
title: "Keyboard Mechanizer",
icon: "img/icon@300.png"
});
mainWindow.loadUrl(INDEX_PAGE);
mainWindow.toggleDevTools();