From 72cbfb759af034538c232a1d607ba720574cbcac Mon Sep 17 00:00:00 2001 From: Jagandeep Brar Date: Tue, 4 Jan 2022 20:53:23 -0600 Subject: [PATCH] fix(macos): Re-enable quit-on-hide --- macos/Runner/AppDelegate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift index 218f93e0..d53ef643 100644 --- a/macos/Runner/AppDelegate.swift +++ b/macos/Runner/AppDelegate.swift @@ -4,6 +4,6 @@ import FlutterMacOS @NSApplicationMain class AppDelegate: FlutterAppDelegate { override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { - return false + return true } }