From f8ce6d04790100867802fb05c35c47ca41c544de Mon Sep 17 00:00:00 2001 From: Nicolas Constant Date: Fri, 3 Aug 2018 00:19:26 -0400 Subject: [PATCH] fix electron initial size --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index aaa94878..6d431450 100644 --- a/main.js +++ b/main.js @@ -8,7 +8,7 @@ const url = require('url') function createWindow () { // Create the browser window. - win = new BrowserWindow({ width: 400, height: 800, title: "Sengi"}) + win = new BrowserWindow({ width: 395, height: 800, title: "Sengi"}) win.setMenu(null); // and load the index.html of the app.