Show reply-to in identity selector

This commit is contained in:
M66B 2023-01-22 09:09:52 +01:00
parent 5b5cb05605
commit d42fd163b3
1 changed files with 4 additions and 1 deletions

View File

@ -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);