Browse Source

Fixed error on save preferences

Fixes #2214
pull/2223/head
Ramiro Saenz 6 years ago
parent
commit
c74bb72c7d
  1. 3
      electron/main.js

3
electron/main.js

@ -66,8 +66,9 @@ app.setAppUserModelId('com.grupovrs.ramboxce');
const appMenu = require('./menu')(config); const appMenu = require('./menu')(config);
// Configure AutoLaunch // Configure AutoLaunch
let appLauncher;
if ( !isDev ) { if ( !isDev ) {
const appLauncher = new AutoLaunch({ appLauncher = new AutoLaunch({
name: 'Rambox' name: 'Rambox'
,isHidden: config.get('start_minimized') ,isHidden: config.get('start_minimized')
}); });

Loading…
Cancel
Save