From: Andrej Mihajlov Date: Mon, 14 Dec 2020 14:26:24 +0000 (+0100) Subject: WireGuardApp: Fix window background color to default black X-Git-Tag: 1.0.10-18~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=44704ba892a01901f6989d4b4d49f1d79f8e3c5f;p=thirdparty%2Fwireguard-apple.git WireGuardApp: Fix window background color to default black Signed-off-by: Andrej Mihajlov --- 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()