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

Commit

Permalink
Fix potential title shown in new tab button when view is reused (#2053)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro authored and bluemarvin committed Oct 24, 2019
1 parent f767945 commit 2547bc6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,12 @@ public void setAddTabMode(boolean aShow) {
mShowAddTab = aShow;
if (mShowAddTab) {
mTabCardView.setVisibility(View.GONE);
mURL.setVisibility(View.INVISIBLE);
mTabAddView.setVisibility(View.VISIBLE);
} else {
mTabCardView.setVisibility(View.VISIBLE);
mTabAddView.setVisibility(View.GONE);
mURL.setVisibility(View.VISIBLE);
}
}

Expand Down

0 comments on commit 2547bc6

Please sign in to comment.