diff options
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 3 |
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; |