summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-06-07 00:10:34 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-06-07 00:11:12 +0200
commit2ffe15ca52c33e454d7bf0e632fc39752710733f (patch)
treefa5313b5010d4a5898c42839899dfdf123fc064a /src/mainwindow.cpp
parentfix minimum requirement and add screenshots (diff)
downloadrekonq-2ffe15ca52c33e454d7bf0e632fc39752710733f.tar.xz
Letting SHIFT + MidClick reverse open new tab settings
BUG: 299024
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 7553a424..e0fdf255 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -1630,6 +1630,9 @@ void MainWindow::loadCheckedUrl(const KUrl& url, const Rekonq::OpenType& type, Q
case Rekonq::NewFocusedTab:
tab = mainView()->newWebTab(true);
break;
+ case Rekonq::NewBackGroundTab:
+ tab = mainView()->newWebTab(false);
+ break;
case Rekonq::NewWindow:
rApp->loadUrl(url, type);
return;