mirror of https://github.com/M66B/FairEmail.git
Set identity via title color
This commit is contained in:
parent
9d20778d9d
commit
da243d208c
|
@ -2609,6 +2609,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
} catch (UnsupportedEncodingException ignored) {
|
||||
}
|
||||
|
||||
tvIdentityTitle.setTextColor(message.identityColor == null ? textColorTertiary : message.identityColor);
|
||||
tvIdentityTitle.setVisibility(show_addresses && via != null ? View.VISIBLE : View.GONE);
|
||||
tvIdentity.setVisibility(show_addresses && via != null ? View.VISIBLE : View.GONE);
|
||||
tvIdentity.setText(via == null ? null : formatAddresses(new Address[]{via}, true));
|
||||
|
|
Loading…
Reference in New Issue