diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-09-15 00:04:14 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-09-15 00:04:14 +0200 |
commit | e2e0f825b9b299d87298da916d263505ed37652a (patch) | |
tree | 27c7acb92947cd7b6f7d0f06950ce110efb7e958 /src/urlbar | |
parent | Improve adblock 2 (diff) | |
download | rekonq-e2e0f825b9b299d87298da916d263505ed37652a.tar.xz |
Fix urlbar loading on QtWebKit2.2
Diffstat (limited to 'src/urlbar')
-rw-r--r-- | src/urlbar/urlbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index 04d96983..e3f216d8 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -182,7 +182,7 @@ void UrlBar::paintEvent(QPaintEvent *event) QPalette p = palette(); int progr = _tab->progress(); - if (progr == 0) + if (progr == 0 || progr == 100) { if (_tab->url().scheme() == QL1S("https")) { |