timer-app icon indicating copy to clipboard operation
timer-app copied to clipboard

Option for app to quit on close window/s

Open NicholasSloan opened this issue 4 years ago • 2 comments

Enable preference (or hidden preference via Term) for app to quit on closure of last window.

NicholasSloan avatar Nov 13 '20 13:11 NicholasSloan

Thanks @NicholasSloan for the suggestion. We're trying to keep the app very simple. If others want this feature, we'll add it to the list of features.

Please vote by putting a thumbs up on the issue.

karbassi avatar Nov 13 '20 20:11 karbassi

For anyone that wants to take on the PR, the code to enable this feature is:


func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
    return true
}

inside the AppDelegate.swift

karbassi avatar Jan 23 '21 17:01 karbassi