From df48774805e212f78ca503680c1cd2cc8c18ae81 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Fri, 27 Jan 2012 23:31:28 +0100 Subject: Don't steal focus on loadStarted I'll tag rekonq 0.8.72 to let you easily test this. Can you please catch if this really fixes your issue? CCBUG:286729 --- src/mainview.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainview.cpp b/src/mainview.cpp index 438f885a..711ee15e 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -527,7 +527,9 @@ void MainView::webViewLoadStarted() emit currentTabStateChanged(); emit showStatusBarMessage(i18n("Loading..."), Rekonq::Info); - if (view == currentWebTab()->view() && view->url().scheme() != QL1S("about")) + if (view == currentWebTab()->view() + && !currentUrlBar()->hasFocus() + && view->url().scheme() != QL1S("about")) { view->setFocus(); } -- cgit v1.2.1