Browse Source

Fix masterpassword for Electron 5.

pull/3202/head
TheGoddessInari 6 years ago
parent
commit
8d6e1495d3
No known key found for this signature in database
GPG Key ID: 1209B1B7632D69A
  1. 4
      electron/main.js

4
electron/main.js

@ -209,6 +209,10 @@ function createMasterPasswordWindow() {
mainMasterPasswordWindow = new BrowserWindow({
backgroundColor: '#0675A0'
,frame: false
,webPreferences: {
nodeIntegration: true
}
});
// Open the DevTools.
if ( isDev ) mainMasterPasswordWindow.webContents.openDevTools();

Loading…
Cancel
Save