mirror of https://github.com/M66B/FairEmail.git
Fixed colored stars
This commit is contained in:
parent
ad5b4f3f73
commit
3c76f41d4a
|
@ -975,7 +975,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
if (message.color == null)
|
||||
ibFlagged.setImageTintList(ColorStateList.valueOf(flagged > 0 ? colorAccent : textColorSecondary));
|
||||
else
|
||||
ibFlagged.setImageTintList(ColorStateList.valueOf(expanded ? message.color : textColorSecondary));
|
||||
ibFlagged.setImageTintList(ColorStateList.valueOf(expanded || !flags_background ? message.color : textColorSecondary));
|
||||
|
||||
ibFlagged.setEnabled(message.uid != null || message.accountPop);
|
||||
|
||||
|
|
Loading…
Reference in New Issue