Ajout mesures anti-disparition de Pitaya en mode desktop

This commit is contained in:
2015-11-05 11:41:51 +01:00
parent 519ec99264
commit bb26fc2759
3 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,6 @@
var Util = require('../../util');
var logger = Util.Logger;
var remote = require('remote');
var RUN_APP = exports.RUN_APP = 'RUN_APP';
var RUN_APP_SUCCESS = exports.RUN_APP_SUCCESS = 'RUN_APP_SUCCESS';
@ -16,10 +17,16 @@ exports.runApp = function(execPath) {
return Util.System.runApp(execPath, { clearFreeDesktopFlags: true })
.then(function() {
dispatch({ type: RUN_APP_SUCCESS, execPath: execPath });
// Hypothetical fix
var win = remote.getCurrentWindow();
win.show();
return execPath;
})
.catch(function(err) {
dispatch({ type: RUN_APP_FAILED, error: err });
// Hypothetical fix
var win = remote.getCurrentWindow();
win.show();
return err;
})
;