Update main.js

This commit is contained in:
Anonymus Raccoon
2019-05-02 09:51:50 +02:00
committed by GitHub
parent e2aacd2442
commit c0d5b3378c
+2 -2
View File
@@ -48,7 +48,7 @@ else
function createWindow()
{
win = new BrowserWindow({ width: 1080, height: 720 });
win = new BrowserWindow({ width: 1080, height: 720, webPreferences: { webSecurity: false } });
win.loadFile("dist/html/index.html");
win.setMenu(null);
win.webContents.openDevTools();
@@ -68,4 +68,4 @@ function handleArgs(arg)
var store = new Store("account");
store.set("steam", token);
}
}
}