aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index d776cf0..f59b110 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -309,7 +309,9 @@ void MainWindow::on_actionSettings_triggered()
// changes are instantly applied.
for (int i = 0; i < this->ui->browser_tabs->count(); ++i)
{
- tabAt(i)->needs_rerender = true;
+ BrowserTab * tab = tabAt(i);
+ tab->needs_rerender = true;
+ tab->updateUrlBarStyle();
}
// Re-render the currently-open tab if we have one.
BrowserTab * tab = this->curTab();