diff options
| author | Mike Skec <skec@protonmail.ch> | 2020-12-31 14:05:20 +1100 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2020-12-31 10:57:55 +0100 |
| commit | eabbbebed714f4d54f57fb9065ecbeb303f08f9b (patch) | |
| tree | 7db6a35f5193db16133b63b77fffb12f857ade46 /src/mainwindow.cpp | |
| parent | d8c7c029cd78910683dc3c1c7d5f1219d6bc7f7d (diff) | |
| download | kristall-eabbbebed714f4d54f57fb9065ecbeb303f08f9b.tar.gz | |
Added fancy url bar styling
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 4 |
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(); |
