diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-13 01:14:58 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-13 01:14:58 +0100 |
commit | 9aa7ab98bc6200b7bbc266ed98087a322055c24e (patch) | |
tree | 3e248d0b4aa4387b9a3c8caad6ea3e60153392d5 /src | |
parent | Good news, bad news. (diff) | |
download | rekonq-9aa7ab98bc6200b7bbc266ed98087a322055c24e.tar.xz |
Honor settings when Opening new link after the current focused page
BUG:226520
Diffstat (limited to 'src')
-rw-r--r-- | src/webpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index a6e103bd..9805a3d5 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -139,7 +139,7 @@ WebPage *WebPage::createWindow(QWebPage::WebWindowType type) WebTab *w = 0; if(ReKonfig::openTabNoWindow()) { - w = Application::instance()->mainWindow()->mainView()->newWebTab(!ReKonfig::openTabsBack()); + w = Application::instance()->mainWindow()->mainView()->newWebTab(!ReKonfig::openTabsBack(), ReKonfig::openTabsNearCurrent()); } else { |