18 lines
370 B
Swift
18 lines
370 B
Swift
//
|
|
// AppDelegate.swift
|
|
// DetachablePopover
|
|
//
|
|
// Created by Lukas Kubanek on 25.10.2014.
|
|
// Copyright (c) 2014 Lukas Kubanek. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
|
|
@NSApplicationMain class AppDelegate: NSObject, NSApplicationDelegate {
|
|
|
|
func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
|
|
return true
|
|
}
|
|
|
|
}
|