diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-12-01 18:52:55 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-12-01 18:52:55 +0100 |
commit | 9e48d9d5449d78aab4a4e89001945fda8f571f66 (patch) | |
tree | 98afc16068eca51377521df822a14e6eb807819e /src/application.cpp | |
parent | Faster clean startup (with just two side previews to load) (diff) | |
download | rekonq-9e48d9d5449d78aab4a4e89001945fda8f571f66.tar.xz |
Fix bk toolbar initialization
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 27dca44f..9dd98a49 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -416,7 +416,7 @@ void Application::loadUrl(const KUrl& url, const Rekonq::OpenType& type) Rekonq::OpenType newType = type; // Don't open useless tabs or windows for actions in about: pages - if(url.url().contains("about:") && url.url().contains("/")) + if (url.url().contains("about:") && url.url().contains("/")) newType = Rekonq::CurrentTab; // first, create the webview(s) to not let hangs UI.. |