mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 19:10:11 +01:00
Indent in/outgoing messages in thread
This commit is contained in:
@@ -3984,6 +3984,11 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
if (message == null || context == null)
|
||||
return;
|
||||
|
||||
if (viewType == ViewType.THREAD) {
|
||||
boolean outgoing = holder.isOutgoing(message);
|
||||
holder.card.setOutgoing(outgoing);
|
||||
}
|
||||
|
||||
if (filter_duplicates && message.duplicate) {
|
||||
holder.tvFolder.setText(context.getString(R.string.title_duplicate_in, message.getFolderName(context)));
|
||||
holder.tvFolder.setTypeface(message.unseen > 0 ? Typeface.DEFAULT_BOLD : Typeface.DEFAULT);
|
||||
|
||||
Reference in New Issue
Block a user