Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
q2r5 committed Jun 29, 2020
1 parent 3ab5160 commit 8f9c30d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Client/Frontend/Browser/BrowserViewController.swift
Expand Up @@ -2387,7 +2387,10 @@ extension BrowserViewController: Themeable {
webViews.forEach({ $0.applyTheme() })

let tabs = tabManager.tabs
tabs.forEach { $0.applyTheme() }
tabs.forEach {
$0.applyTheme()
urlBar.locationView.tabDidChangeContentBlocking($0)
}

guard let contentScript = self.tabManager.selectedTab?.getContentScript(name: ReaderMode.name()) else { return }
appyThemeForPreferences(profile.prefs, contentScript: contentScript)
Expand Down

0 comments on commit 8f9c30d

Please sign in to comment.