Show reply-to in identity selector

pull/212/head
M66B 2 years ago
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…
Cancel
Save