Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Fix url bar focus issues (#2233)
Browse files Browse the repository at this point in the history
* Force URL bar to gain focus after a URL is loaded

* Clear bookmarks button focus after binding is set
  • Loading branch information
keianhzo authored and MortimerGoro committed Nov 13, 2019
1 parent 73a3d43 commit 2a4fbae
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ public void setMicrophoneEnabled(boolean enabled) {

private void setIsBookmarked(boolean aValue) {
mBinding.setIsBookmarked(aValue);
mBinding.bookmarkButton.clearFocus();
}

public void setPrivateMode(boolean isEnabled) {
Expand Down

0 comments on commit 2a4fbae

Please sign in to comment.