From a81b732e1f207feb6169647bb33ad7120e8fcbc7 Mon Sep 17 00:00:00 2001 From: Kaunteya Date: Sat, 4 May 2019 11:30:58 +0530 Subject: [PATCH] applicationShouldTerminateAfterLastWindowClosed => true --- Colors/AppDelegate.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Colors/AppDelegate.swift b/Colors/AppDelegate.swift index 229bafc..72da26b 100644 --- a/Colors/AppDelegate.swift +++ b/Colors/AppDelegate.swift @@ -19,5 +19,9 @@ class AppDelegate: NSObject, NSApplicationDelegate { ] ) } + + func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } }