1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 01:36:55 +00:00

Guarantee line break after lines

This commit is contained in:
M66B 2022-03-27 15:18:02 +02:00
parent e168a4a4f5
commit 5c81e38c6b

View file

@ -3456,6 +3456,12 @@ public class HtmlHelper {
}
}, document.body());
for (LineSpan line : ssb.getSpans(0, ssb.length(), LineSpan.class)){
int end = ssb.getSpanEnd(line);
if (end<ssb.length()&& ssb.charAt(end)!='\n')
ssb.insert(end, "\n");
}
if (debug)
for (int i = ssb.length() - 1; i >= 0; i--) {
char kar = ssb.charAt(i);