diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-07-17 16:14:30 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-07-17 16:15:19 +0200 |
commit | b34ba890dac0ab2fee87f0e7abe7e130c7820b71 (patch) | |
tree | d4b1cad9b5c1a15d4abbc7ba51f887bb3da53d80 /src | |
parent | New rekonq tools menu in main toolbar. (diff) | |
download | rekonq-b34ba890dac0ab2fee87f0e7abe7e130c7820b71.tar.xz |
Giving webview focus faster
Diffstat (limited to 'src')
-rw-r--r-- | src/mainview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index ec6ffea1..41f5b72d 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -699,8 +699,8 @@ void MainView::loadUrl(const KUrl &url) if (webView) { - webView->load(loadingUrl); webView->setFocus(); + webView->load(loadingUrl); } } |