Skip to content

Commit

Permalink
bug fixed when tap on the outside removed keyboard in search bar in H…
Browse files Browse the repository at this point in the history
…istoryPanel
  • Loading branch information
gokulvenkat243 committed Nov 26, 2024
1 parent 61dcb31 commit 6c52c6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ extension HistoryPanel {
private func removedSearchBarWhenTapOutside(_ sender: UITapGestureRecognizer) {
if !bottomStackView.isHidden && !bottomStackView.frame.contains(sender.location(in: view)) {
bottomStackView.isHidden = true
bottomStackView.resignFirstResponder()
searchbar.resignFirstResponder()
}
}

Expand Down

0 comments on commit 6c52c6e

Please sign in to comment.