Skip to content

Commit 6b13ecd

Browse files
authored
Fix serp focus bug
1 parent b27fe88 commit 6b13ecd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/src/main/java/com/duckduckgo/app/browser/BrowserActivity.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,9 @@ class BrowserActivity : DuckDuckGoActivity() {
279279
}
280280

281281
webView.setOnTouchListener { _, _ ->
282-
focusDummy.requestFocus()
282+
if (omnibarTextInput.isFocused) {
283+
focusDummy.requestFocus()
284+
}
283285
false
284286
}
285287

0 commit comments

Comments
 (0)