diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-08-23 11:03:44 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-08-23 11:03:44 +0200 |
commit | 19cc936f19c708e3adb07b1d201600cf027bfb6b (patch) | |
tree | f5196daa35d4e6e8f825cf60ae86c85602b88cde /src/mainview.cpp | |
parent | Removed some menu related actions (cloned in the context menus) (diff) | |
download | rekonq-19cc936f19c708e3adb07b1d201600cf027bfb6b.tar.xz |
Applied Lindsay's patch about opening Home Page in new tabs
and changed a bit General UI
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 3eca9ef5..5f0afa5c 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -339,6 +339,11 @@ WebView *MainView::newTab(bool focused) showTabBar(); addTabButtonPosition(); + + if (ReKonfig::newTabsOpenHomePage()) + { + webView->load(QUrl(ReKonfig::homePage())); + } return webView; } |