From 2f4cbebd631f6ed891ac86c3a40ef5e301987cb1 Mon Sep 17 00:00:00 2001 From: Brian Monroe Date: Thu, 30 Apr 2020 20:28:57 -0700 Subject: [PATCH] Fix for #4 --- main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.js b/main.js index 18864d4..3360d56 100644 --- a/main.js +++ b/main.js @@ -72,9 +72,9 @@ function createWindow () { app.on('window-all-closed', () => { // On macOS it is common for applications and their menu bar // to stay active until the user quits explicitly with Cmd + Q - /*if (process.platform !== 'darwin') { + if (process.platform !== 'darwin') { app.quit(); - }*/ + } }); app.on('activate', () => { @@ -88,4 +88,4 @@ app.on('activate', () => { // In this file you can include the rest of your app's specific main process // code. You can also put them in separate files and require them here. -app.on('ready', createWindow); \ No newline at end of file +app.on('ready', createWindow);