aboutsummaryrefslogtreecommitdiffstats
path: root/Sources
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2020-12-14 15:26:24 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-12-15 15:56:22 +0100
commit44704ba892a01901f6989d4b4d49f1d79f8e3c5f (patch)
treef3720a3c76ac136b1f72a284a9f336e7f35bd546 /Sources
parentglobal: support DNS search domains (diff)
downloadwireguard-apple-44704ba892a01901f6989d4b4d49f1d79f8e3c5f.tar.xz
wireguard-apple-44704ba892a01901f6989d4b4d49f1d79f8e3c5f.zip
WireGuardApp: Fix window background color to default black
Signed-off-by: Andrej Mihajlov <and@mullvad.net>
Diffstat (limited to 'Sources')
-rw-r--r--Sources/WireGuardApp/UI/iOS/AppDelegate.swift5
1 files changed, 0 insertions, 5 deletions
diff --git a/Sources/WireGuardApp/UI/iOS/AppDelegate.swift b/Sources/WireGuardApp/UI/iOS/AppDelegate.swift
index f86a0e7..4262e95 100644
--- a/Sources/WireGuardApp/UI/iOS/AppDelegate.swift
+++ b/Sources/WireGuardApp/UI/iOS/AppDelegate.swift
@@ -21,11 +21,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
}
let window = UIWindow(frame: UIScreen.main.bounds)
- if #available(iOS 13.0, *) {
- window.backgroundColor = .systemBackground
- } else {
- window.backgroundColor = .white
- }
self.window = window
let mainVC = MainViewController()