Skip to content

Commit

Permalink
Fix serp focus bug
Browse files Browse the repository at this point in the history
  • Loading branch information
subsymbolic authored Jan 22, 2018
1 parent b27fe88 commit 6b13ecd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,9 @@ class BrowserActivity : DuckDuckGoActivity() {
}

webView.setOnTouchListener { _, _ ->
focusDummy.requestFocus()
if (omnibarTextInput.isFocused) {
focusDummy.requestFocus()
}
false
}

Expand Down

0 comments on commit 6b13ecd

Please sign in to comment.