Skip to content

Commit

Permalink
Merge pull request #17 from DataASAP/a3
Browse files Browse the repository at this point in the history
Updagraded to electron 9.0.4
  • Loading branch information
dcheli authored Jun 20, 2020
2 parents c6ed4bb + 55df9fa commit cc3be3c
Show file tree
Hide file tree
Showing 4 changed files with 2,375 additions and 1,332 deletions.
7 changes: 6 additions & 1 deletion app/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ function createConfigWindow(type) {
height: 1000,
width: 1200,
title: "Config Stuff",
webPreferences: {
backgroundThrottling: false,
nodeIntegration: true
},
// Note that the icon attribute is only used in development mode
icon: iconImage
});
Expand Down Expand Up @@ -74,7 +78,8 @@ app.on('ready', async () => {
mainWindow = new BrowserWindow({
show: false,
webPreferences: {
backgroundThrottling: false
backgroundThrottling: false,
nodeIntegration: true
},
// Note that the icon attribute is only used in development mode
icon: iconImage
Expand Down
Loading

0 comments on commit cc3be3c

Please sign in to comment.