From 19ced85bc88b2caac3366a3380b534b769e9aa93 Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Thu, 2 Nov 2017 00:57:51 +0900 Subject: [PATCH] Use app.exit() instead of app.quit() in makeSingleInstance --- src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index cff5aa9f..9a178a63 100644 --- a/src/main.js +++ b/src/main.js @@ -172,7 +172,7 @@ if (app.makeSingleInstance((commandLine/*, workingDirectory*/) => { } } })) { - app.quit(); + app.exit(); } function shouldShowTrayIcon() {