diff options
| author | Aurelien Gateau <agateau@kde.org> | 2010-05-26 14:43:01 +0200 | 
|---|---|---|
| committer | Aurelien Gateau <agateau@kde.org> | 2010-05-26 14:43:01 +0200 | 
| commit | 801e8d9441f6ec7b47dd2428e7076c673db57949 (patch) | |
| tree | 864b34414f2a45f1c8ebbb517434044033a76dde /src/urlbar | |
| parent | SVN_SILENT made messages (.desktop file) (diff) | |
| download | rekonq-801e8d9441f6ec7b47dd2428e7076c673db57949.tar.xz | |
Replaced the gradient with a solid color: it's easier to read.
Diffstat (limited to 'src/urlbar')
| -rw-r--r-- | src/urlbar/urlbar.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index 4d38f170..9edf7c6b 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -181,6 +181,7 @@ void UrlBar::paintEvent(QPaintEvent *event)          QLinearGradient gradient(0, 0, width(), 0);          gradient.setColorAt(0, loadingColor); +        gradient.setColorAt(((double)progr) / 100 - .000001, loadingColor);          gradient.setColorAt(((double)progr) / 100, backgroundColor);          p.setBrush(QPalette::Base, gradient);      }  | 
