Window Size

This commit is contained in:
Ca_Salat
2019-10-24 16:12:05 +02:00
parent f9a5dd56f0
commit d1d417be9d
2 changed files with 3 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ let win: BrowserWindow = null;
app.on('ready', () => {
win = new BrowserWindow({
height: 600,
width: 800
width: 1000
});
win.loadFile('index.html');
});