WireGuardApp: Fix window background color to default black

Signed-off-by: Andrej Mihajlov <and@mullvad.net>
This commit is contained in:
Andrej Mihajlov 2020-12-14 15:26:24 +01:00 committed by Jason A. Donenfeld
parent 9231c03513
commit 44704ba892
1 changed files with 0 additions and 5 deletions

View File

@ -21,11 +21,6 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
} }
let window = UIWindow(frame: UIScreen.main.bounds) let window = UIWindow(frame: UIScreen.main.bounds)
if #available(iOS 13.0, *) {
window.backgroundColor = .systemBackground
} else {
window.backgroundColor = .white
}
self.window = window self.window = window
let mainVC = MainViewController() let mainVC = MainViewController()