Browse Source

fix flickering background when entering the connectiviy view

cyberta 4 years ago
parent
commit
a8b5344d31
1 changed files with 3 additions and 0 deletions
  1. 3 0
      deltachat-ios/Controller/ConnectivityViewController.swift

+ 3 - 0
deltachat-ios/Controller/ConnectivityViewController.swift

@@ -17,6 +17,9 @@ class ConnectivityViewController: WebViewViewController {
     override func viewDidLoad() {
         super.viewDidLoad()
         self.title = String.localized("connectivity")
+        self.webView.isOpaque = false
+        self.webView.backgroundColor = .clear
+        view.backgroundColor = DcColors.defaultBackgroundColor
         loadHtml()
     }