Browse Source

Fixed exit on Master Password screen

Fixes #3072
pull/3102/head
Ramiro Saenz 4 years ago
parent
commit
04413c81eb
  1. 3
      electron/main.js

3
electron/main.js

@ -1,6 +1,6 @@
'use strict'; 'use strict';
const {app, protocol, BrowserWindow, dialog, shell, Menu, ipcMain, nativeImage, session} = require('electron'); const {app, BrowserWindow, shell, Menu, ipcMain, nativeImage, session} = require('electron');
// Tray // Tray
const tray = require('./tray'); const tray = require('./tray');
// AutoLaunch // AutoLaunch
@ -234,6 +234,7 @@ function createMasterPasswordWindow() {
,frame: false ,frame: false
,webPreferences: { ,webPreferences: {
nodeIntegration: true nodeIntegration: true
,enableRemoteModule: true
} }
}); });
// Open the DevTools. // Open the DevTools.

Loading…
Cancel
Save