Browse Source

Fix: Rambox stays on the master password window

pull/2453/head
Vulich Fernando 6 years ago
parent
commit
7cf83a695f
  1. 3
      electron/main.js

3
electron/main.js

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

Loading…
Cancel
Save