ソースを参照

Quit application after last window closed

master
Matt Baer 6年前
コミット
c2185d3c9f
1個のファイルの変更5行の追加1行の削除
  1. +5
    -1
      writeas/AppDelegate.swift

+ 5
- 1
writeas/AppDelegate.swift ファイルの表示

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


読み込み中…
キャンセル
保存