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

3
.gitignore vendored
View File

@@ -1 +1,2 @@
node_modules/ node_modules/
dist/

View File

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