1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-06 11:39:49 +00:00

Signature below text below reply

This commit is contained in:
M66B 2020-11-21 08:21:40 +01:00
parent 3e95dfd106
commit 056a76a8f7

View file

@ -5010,9 +5010,9 @@ public class FragmentCompose extends FragmentBase {
document.body().prependChild(div);
else if (ref.size() == 0 || signature_location == 2) // bottom
document.body().appendChild(div);
else if (signature_location == 1) // between
else if (signature_location == 1) // below text
if (write_below)
ref.last().after(div);
document.body().appendChild(div);
else
ref.first().before(div);
}