diff options
author | Jonas M. Gastal <jokerwww@gmail.com> | 2009-12-28 16:36:45 +0000 |
---|---|---|
committer | Jonas M. Gastal <jokerwww@gmail.com> | 2009-12-28 16:36:45 +0000 |
commit | dfc875a4e7a3aa9338fce02f792042d7fd658d3f (patch) | |
tree | 0f4a85f077bdb6fdde15ec2e5475246e82335864 | |
parent | rekonq 0.3.26 (diff) | |
download | rekonq-dfc875a4e7a3aa9338fce02f792042d7fd658d3f.tar.xz |
Fixes bug 201559, tabs are now open respecting settings.
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | src/webtab.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -5,3 +5,4 @@ Lionel Chauvin megabigbug@yahoo.fr Johannes Zellner webmaster@nebulon.de Matthieu Gicquel matgic78@gmail.com Ronny Scholz ronny_scholz@web.de +Jonas Gastal jgastal@gmail.com diff --git a/src/webtab.cpp b/src/webtab.cpp index 80c43c78..908fc7a3 100644 --- a/src/webtab.cpp +++ b/src/webtab.cpp @@ -152,7 +152,7 @@ void WebTab::loadFinished(bool) void WebTab::loadInNewTab(const KUrl &url) { - Application::instance()->loadUrl(url, Rekonq::NewCurrentTab); + Application::instance()->loadUrl(url, Rekonq::SettingOpenTab); } |