Fixed issue with interface toggle

This commit is contained in:
Devine Lu Linvega
2017-11-29 09:38:00 +13:00
parent 364a60f4b9
commit 8ae565cb74
2 changed files with 2 additions and 2 deletions

View File

@@ -54,6 +54,6 @@ function Interface()
const {dialog,app} = require('electron').remote;
var win = require('electron').remote.getCurrentWindow();
win.setSize(900,this.is_visible ? 420 : 400);
win.setSize(400,this.is_visible ? 420 : 400);
}
}