1
0
mirror of https://github.com/NicolasConstant/sengi synced 2025-02-03 11:57:41 +01:00

fix electron window size

This commit is contained in:
Nicolas Constant 2019-02-10 23:27:12 -05:00
parent 8ee31d189a
commit d77d269501
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688

View File

@ -10,7 +10,7 @@ let win
function createWindow() {
// Create the browser window.
win = new BrowserWindow({ width: 395, height: 800, title: "Sengi", backgroundColor: '#FFF' });
win = new BrowserWindow({ width: 393, height: 800, title: "Sengi", backgroundColor: '#FFF' });
var server = http.createServer(requestHandler).listen(9527);
win.loadURL('http://localhost:9527');