1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-01 12:08:46 +00:00

Fixed message read/unread icon

This commit is contained in:
M66B 2024-01-09 08:07:17 +01:00
parent dfc8c74ec8
commit f68da4b313

View file

@ -6118,7 +6118,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
popupMenu.getMenu().findItem(R.id.menu_unseen)
.setTitle(message.ui_seen ? R.string.title_unseen : R.string.title_seen)
.setIcon(message.ui_seen ? R.drawable.twotone_drafts_24 : R.drawable.twotone_mail_24)
.setIcon(message.ui_seen ? R.drawable.twotone_mail_24 : R.drawable.twotone_drafts_24)
.setEnabled(message.uid != null ||
message.accountProtocol != EntityAccount.TYPE_IMAP);