Skip to content

Commit

Permalink
Fix Android 8 devices hover issues in tab icons (#2822)
Browse files Browse the repository at this point in the history
  • Loading branch information
keianhzo committed Feb 21, 2020
1 parent 64cbb6a commit d6952aa
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,10 @@ public void setSelected(boolean selected) {
@Override
public void onHoverChanged(boolean aHovered) {
super.onHoverChanged(aHovered);
if (!aHovered) {
mSendTabButton.setHovered(false);
mCloseButton.setHovered(false);
}
updateState();
}

Expand Down

0 comments on commit d6952aa

Please sign in to comment.