From 8080c872f80f311d949e6fe5c58f44e9d2f81f38 Mon Sep 17 00:00:00 2001 From: Alan Stoll Date: Thu, 3 Jul 2014 09:23:40 -0400 Subject: [PATCH] close gracefully on osx until we can make new window from the tray --- shell/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/index.js b/shell/index.js index 4f9f5abf8..71e4543c9 100644 --- a/shell/index.js +++ b/shell/index.js @@ -12,7 +12,7 @@ module.exports = function(copay) { // quit when all windows are closed app.on('window-all-closed', function() { - if (process.platform !== 'darwin') app.quit(); + app.quit(); }); // initilization when ready