Fixed application still running after exit on Linux (#1996) (#3486)

This commit is contained in:
Kais Hassan 2018-01-12 01:13:16 +02:00 коммит произвёл French Ben
Родитель bd67f76996
Коммит e1c5261546
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -49,7 +49,7 @@ app.on('ready', function () {
});
if (os.platform() === 'win32') {
if (os.platform() === 'win32' || os.platform() === 'linux') {
mainWindow.on('close', function (e) {
mainWindow.webContents.send('application:quitting');
if(!exiting){

Просмотреть файл

@ -44,7 +44,7 @@ var Header = React.createClass({
}
},
handleClose: function () {
if (util.isWindows()) {
if (util.isWindows() || util.isLinux()) {
remote.getCurrentWindow().close();
} else {
remote.getCurrentWindow().hide();