Fix scroll indicator color in dark mode
This commit is contained in:
parent
32648808cb
commit
bea574d7bb
|
@ -14,6 +14,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
|
|||
static let defaultHomepage = URL(string: "gemini://gemini.circumlunar.space/")!
|
||||
|
||||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
||||
|
||||
SymbolCache.load()
|
||||
|
||||
return true
|
||||
|
@ -47,4 +48,3 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -62,11 +62,10 @@ class BrowserWebViewController: UIViewController {
|
|||
|
||||
configureRenderer()
|
||||
|
||||
view.backgroundColor = .systemBackground
|
||||
view.backgroundColor = .systemBackground
|
||||
|
||||
webView = WKWebView()
|
||||
webView.backgroundColor = .systemBackground
|
||||
webView.isOpaque = false
|
||||
webView.navigationDelegate = self
|
||||
webView.uiDelegate = self
|
||||
// it is safe to set the delegate of the web view's internal scroll view becuase WebKit takes care of forwarding between its internal delegate and our own
|
||||
|
|
Loading…
Reference in New Issue