mirror of https://github.com/M66B/FairEmail.git
Show reply-to in identity selector
This commit is contained in:
parent
5b5cb05605
commit
d42fd163b3
|
@ -82,7 +82,10 @@ public class AdapterIdentitySelect extends ArrayAdapter<TupleIdentityEx> {
|
|||
text2.setText(identity.accountName + "/" + identity.email);
|
||||
}
|
||||
|
||||
tvExtra.setText((identity.cc == null ? "" : "+CC") + (identity.bcc == null ? "" : "+BCC"));
|
||||
tvExtra.setText(
|
||||
(identity.cc == null ? "" : "+CC") +
|
||||
(identity.bcc == null ? "" : "+BCC") +
|
||||
(identity.replyto != null && !identity.replyto.equals(identity.email) ? "<<" : ""));
|
||||
|
||||
text2.setVisibility(single ? View.GONE : View.VISIBLE);
|
||||
tvExtra.setVisibility(identity.cc == null && identity.bcc == null ? View.GONE : View.VISIBLE);
|
||||
|
|
Loading…
Reference in New Issue