aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorMike Skec <skec@protonmail.ch>2020-12-31 14:05:20 +1100
committerFelix Queißner <felix@ib-queissner.de>2020-12-31 10:57:55 +0100
commiteabbbebed714f4d54f57fb9065ecbeb303f08f9b (patch)
tree7db6a35f5193db16133b63b77fffb12f857ade46 /src/mainwindow.cpp
parentd8c7c029cd78910683dc3c1c7d5f1219d6bc7f7d (diff)
downloadkristall-eabbbebed714f4d54f57fb9065ecbeb303f08f9b.tar.gz
Added fancy url bar styling
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();