Quit application after last window closed
This commit is contained in:
parent
5881a28110
commit
c2185d3c9f
@ -42,7 +42,11 @@ class AppDelegate: NSObject, NSApplicationDelegate {
|
||||
func applicationWillTerminate(_ aNotification: Notification) {
|
||||
vc?.saveDocument()
|
||||
}
|
||||
|
||||
|
||||
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
||||
return true
|
||||
}
|
||||
|
||||
func applicationDidBecomeActive(_ notification: Notification) {
|
||||
if vc == nil {
|
||||
vc = NSApplication.shared().mainWindow?.contentViewController as? ViewController
|
||||
|
Loading…
Reference in New Issue
Block a user