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/")!
|
static let defaultHomepage = URL(string: "gemini://gemini.circumlunar.space/")!
|
||||||
|
|
||||||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
||||||
|
|
||||||
SymbolCache.load()
|
SymbolCache.load()
|
||||||
|
|
||||||
return true
|
return true
|
||||||
|
@ -47,4 +48,3 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,6 @@ class BrowserWebViewController: UIViewController {
|
||||||
|
|
||||||
webView = WKWebView()
|
webView = WKWebView()
|
||||||
webView.backgroundColor = .systemBackground
|
webView.backgroundColor = .systemBackground
|
||||||
webView.isOpaque = false
|
|
||||||
webView.navigationDelegate = self
|
webView.navigationDelegate = self
|
||||||
webView.uiDelegate = 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
|
// 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