diff options
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index 7a321f3d..61cc50d6 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -253,13 +253,13 @@ WebPage *WebPage::createWindow(QWebPage::WebWindowType type) kDebug() << "Modal Dialog"; WebTab *w = 0; - if (ReKonfig::openTabNoWindow()) + if (ReKonfig::openLinksInNewWindow()) { - w = rApp->mainWindow()->mainView()->newWebTab(!ReKonfig::openTabsBack()); + w = rApp->newMainWindow()->mainView()->currentWebTab(); } else { - w = rApp->newMainWindow()->mainView()->currentWebTab(); + w = rApp->mainWindow()->mainView()->newWebTab(!ReKonfig::openNewTabsInBackground()); } return w->page(); } |