mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-30 19:56:10 +00:00
Insert newline when writing below
This commit is contained in:
parent
ba24ebd0f3
commit
68a1ebd03c
1 changed files with 3 additions and 2 deletions
|
@ -6120,9 +6120,10 @@ public class FragmentCompose extends FragmentBase {
|
||||||
e.tagName("p");
|
e.tagName("p");
|
||||||
reply.appendChild(e);
|
reply.appendChild(e);
|
||||||
|
|
||||||
if (wb && data.draft.wasforwardedfrom == null)
|
if (wb && data.draft.wasforwardedfrom == null) {
|
||||||
|
reply.appendElement("br");
|
||||||
document.body().prependChild(reply);
|
document.body().prependChild(reply);
|
||||||
else
|
} else
|
||||||
document.body().appendChild(reply);
|
document.body().appendChild(reply);
|
||||||
|
|
||||||
addSignature(context, document, data.draft, selected);
|
addSignature(context, document, data.draft, selected);
|
||||||
|
|
Loading…
Reference in a new issue