Skip to content

Commit

Permalink
Fixed ghosting of first logo.
Browse files Browse the repository at this point in the history
  • Loading branch information
c0dehunter authored Jun 12, 2020
1 parent 751dffc commit 250ae38
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ public View getView(int position, View view, ViewGroup parent) {
.into(cell.imageView);
} else {
currency.loadFlagByCode(mContext);
if (currency.getFlag() > 0)
if (currency.getFlag() > 0) {
Glide.with(mContext).clear(cell.imageView);
cell.imageView.setImageResource(currency.getFlag());
}
}
return view;
}
Expand Down

0 comments on commit 250ae38

Please sign in to comment.