Bläddra i källkod

Quit application after last window closed

master
Matt Baer 6 år sedan
förälder
incheckning
c2185d3c9f
1 ändrade filer med 5 tillägg och 1 borttagningar
  1. +5
    -1
      writeas/AppDelegate.swift

+ 5
- 1
writeas/AppDelegate.swift Visa fil

@@ -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


Laddar…
Avbryt
Spara