diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-28 22:41:37 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-28 22:41:37 +0200 |
commit | 3603173d242138550997cbc084f21883b97aa4e2 (patch) | |
tree | 9a912ec2f46462c6b565043c19f3a79e7a5e016d /src/mainwindow.cpp | |
parent | Merge branch 'CLEAR' (diff) | |
parent | Removed Web Inspecting color (diff) | |
download | rekonq-3603173d242138550997cbc084f21883b97aa4e2.tar.xz |
Merge branch 'PrivateColor'
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 9a1ea708..a862ee95 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -67,8 +67,6 @@ #include <kdeprintdialog.h> - - // Qt Includes #include <QtCore/QTimer> #include <QtCore/QRect> @@ -590,6 +588,7 @@ void MainWindow::slotPrivateBrowsing(bool enable) if (button == KMessageBox::Yes) { settings->setAttribute(QWebSettings::PrivateBrowsingEnabled, true); + m_view->currentUrlBar()->setBackgroundColor(Qt::lightGray); // palette().color(QPalette::Active, QPalette::Background)); } else { @@ -599,10 +598,11 @@ void MainWindow::slotPrivateBrowsing(bool enable) else { settings->setAttribute(QWebSettings::PrivateBrowsingEnabled, false); + m_view->currentUrlBar()->setBackgroundColor(palette().color(QPalette::Active, QPalette::Base)); - MainWindow* win = Application::instance()->mainWindow(); - win->m_lastSearch.clear(); - win->mainView()->clear(); + m_lastSearch.clear(); + m_view->clear(); + m_view->slotReloadAllTabs(); } } |