Skip to content

Commit

Permalink
Updagraded to electron 9.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dcheli committed Jun 20, 2020
1 parent c6ed4bb commit 55df9fa
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 55df9fa

Please sign in to comment.