aboutsummaryrefslogtreecommitdiffstats
path: root/WireGuard/WireGuard/UI/macOS/Application.swift
diff options
context:
space:
mode:
Diffstat (limited to 'WireGuard/WireGuard/UI/macOS/Application.swift')
-rw-r--r--WireGuard/WireGuard/UI/macOS/Application.swift4
1 files changed, 1 insertions, 3 deletions
diff --git a/WireGuard/WireGuard/UI/macOS/Application.swift b/WireGuard/WireGuard/UI/macOS/Application.swift
index 644bbab..5305f2a 100644
--- a/WireGuard/WireGuard/UI/macOS/Application.swift
+++ b/WireGuard/WireGuard/UI/macOS/Application.swift
@@ -19,12 +19,10 @@ class Application: NSApplication {
private var appDelegate: AppDelegate? //swiftlint:disable:this weak_delegate
- // We use a custom Application class to be able to set the app delegate
- // before app.run() gets called in NSApplicationMain().
override init() {
super.init()
appDelegate = AppDelegate() // Keep a strong reference to the app delegate
- delegate = appDelegate
+ delegate = appDelegate // Set delegate before app.run() gets called in NSApplicationMain()
}
required init?(coder: NSCoder) {