adguard-home-manager/macos/Runner/AppDelegate.swift

14 lines
311 B
Swift
Raw Normal View History

import Cocoa
import FlutterMacOS
2024-09-08 19:07:05 +02:00
@main
class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}
2025-03-09 20:36:45 +01:00
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
}