mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-09 02:23:38 +02:00
Show CC/BCC when present
This commit is contained in:
@@ -3886,7 +3886,9 @@ public class FragmentCompose extends FragmentBase {
|
||||
cbSignature.setTag(data.draft.signature);
|
||||
|
||||
grpHeader.setVisibility(View.VISIBLE);
|
||||
if ("reply_all".equals(action))
|
||||
if ("reply_all".equals(action) ||
|
||||
(data.draft.cc != null && data.draft.cc.length > 0) ||
|
||||
(data.draft.bcc != null && data.draft.bcc.length > 0))
|
||||
grpAddresses.setVisibility(View.VISIBLE);
|
||||
ibCcBcc.setVisibility(View.VISIBLE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user