Browse Source

Prevent to block main process

Related #2232
pull/2255/head
Ramiro Saenz 6 years ago
parent
commit
8a53e4fac5
  1. 1
      electron/main.js

1
electron/main.js

@ -257,6 +257,7 @@ ipcMain.on('getConfig', function(event, arg) {
});
ipcMain.on('sConfig', function(event, values) {
config.set(values);
event.returnValue = true;
});
ipcMain.on('setConfig', function(event, values) {
config.set(values);

Loading…
Cancel
Save