fix(browser): focus webview on navigation

This commit is contained in:
Oleg Shparber 2019-04-10 20:21:28 -04:00
parent 31524b0cf1
commit a998119a55

View File

@ -102,6 +102,7 @@ void WebControl::setWebBridgeObject(const QString &name, QObject *object)
void WebControl::load(const QUrl &url)
{
m_webView->load(url);
m_webView->setFocus();
}
void WebControl::activateSearchBar()