diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-04-03 12:38:58 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-04-03 12:38:58 +0200 |
commit | 905c7e9c391f371d68fc646cd64ddc24055ed40b (patch) | |
tree | 8968eea899e9c21fa89c652d9c3949247dc3b809 /src/webview.cpp | |
parent | Rekonq 0.7 first stable release, yeah!! (diff) | |
download | rekonq-905c7e9c391f371d68fc646cd64ddc24055ed40b.tar.xz |
This commit aims to fix a long standing rekonq bug about scrollbar (and webview in general)
theme.
The right way to do it seems be using a local .css file.
Letting this be in master for one week (at least) before backporting...
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 91910970..72951698 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -59,7 +59,6 @@ #include <QtGui/QClipboard> #include <QtGui/QContextMenuEvent> -#include <QtGui/QWindowsStyle> #include <QtWebKit/QWebFrame> #include <QtWebKit/QWebHistory> @@ -81,21 +80,6 @@ WebView::WebView(QWidget* parent) WebPage *page = new WebPage(this); setPage(page); - // // NOTE This is a lot hackish. We copied it from Arora, but using a "Windows Style" - // // seems really a pity to me. The problem is that using a KStyle everything seems "broken" - // // (at least with dark colors). So I think the code should be somthing like: - // KStyle s; - // setPalette( s.standardPalette() ); - // // But it doesn't work :( - // // We'll see in next KDE releases... - QPalette p; - if (p.color(QPalette::ButtonText).lightness() > 50) //if it is a dark theme - { - QWindowsStyle s; - p = s.standardPalette(); - setPalette(p); - } - // download system connect(this, SIGNAL(linkShiftClicked(const KUrl &)), page, SLOT(downloadUrl(const KUrl &))); |