Added option to separate replies with a line

This commit is contained in:
M66B
2020-10-07 18:01:26 +02:00
parent da88b1f7d6
commit a7d57aadf1
7 changed files with 44 additions and 7 deletions

View File

@@ -3712,8 +3712,9 @@ public class FragmentCompose extends FragmentBase {
reply.appendElement("br");
// Build reply header
boolean separate_reply = prefs.getBoolean("separate_reply", false);
boolean extended_reply = prefs.getBoolean("extended_reply", false);
Element p = ref.getReplyHeader(context, document, extended_reply);
Element p = ref.getReplyHeader(context, document, separate_reply, extended_reply);
reply.appendChild(p);
Document d;