diff --git a/FAQ.md b/FAQ.md index e51a7ed762..3430516ee6 100644 --- a/FAQ.md +++ b/FAQ.md @@ -238,6 +238,7 @@ In the display section of the advanced settings you can enable or disable: * *Conversation threading*: to disable conversation threading and to show individual messages instead * *Show contact photos*: to hide contact photos * *Show identicons*: to show generated contact avatars +* *Show stars*: to hide stars (favorites) * *Show message preview*: to show two lines of the message text * *Show address details by default*: to collapse the addresses section by default * *Conversation action bar*: to disable the bottom navigation bar diff --git a/app/src/main/java/eu/faircode/email/AdapterMessage.java b/app/src/main/java/eu/faircode/email/AdapterMessage.java index 7000b5fa1a..f00692ab55 100644 --- a/app/src/main/java/eu/faircode/email/AdapterMessage.java +++ b/app/src/main/java/eu/faircode/email/AdapterMessage.java @@ -143,6 +143,7 @@ public class AdapterMessage extends RecyclerView.Adapter 0 ? R.drawable.baseline_star_24 : R.drawable.baseline_star_border_24); ivFlagged.setImageTintList(ColorStateList.valueOf(flagged > 0 ? colorAccent : textColorSecondary)); - ivFlagged.setVisibility(message.uid == null ? View.INVISIBLE : View.VISIBLE); + ivFlagged.setVisibility(flags ? (message.uid == null ? View.INVISIBLE : View.VISIBLE) : View.GONE); } private void bindContactInfo(ContactInfo info, TupleMessageEx message) { @@ -2667,6 +2668,7 @@ public class AdapterMessage extends RecyclerView.Adapter + + + + Show contact photos Show identicons Show names and email addresses + Show stars (favorites) Show message preview Show address details by default Automatically show original message for known contacts @@ -188,6 +189,7 @@ Show unified inbox folders or unified inbox messages Group messages related to each other When disabled only names will be shown when available + Note that starred messages will always be kept locally Automatically open message when there is just one message or just one unread message in a conversation Multiple expanded messages will always be closed on \'back\' Automatically close conversations when all messages are archived, sent or trashed