summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/urlbar/urlbar.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp
index 1b6ebca8..290ac034 100644
--- a/src/urlbar/urlbar.cpp
+++ b/src/urlbar/urlbar.cpp
@@ -37,6 +37,7 @@
#include "mainwindow.h"
#include "webview.h"
#include "historymanager.h"
+#include "webtab.h"
// KDE Includes
#include <KDebug>
@@ -204,6 +205,9 @@ void UrlBar::activated(const QString& urlString)
if (urlString.isEmpty())
return;
+ // this fix urlbar behaviour, removing focus from there and enabling
+ // loading animation. Temporary fix??
+ Application::instance()->mainWindow()->currentTab()->setFocus();
setUrl(urlString);
emit activated(m_currentUrl);
}