1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-27 18:27:43 +00:00

Fixed ident/newline

This commit is contained in:
M66B 2022-01-19 21:11:06 +01:00
parent 4555c8f031
commit fd9cfd9c7f

View file

@ -596,7 +596,7 @@ public class StyleHelper {
edit.removeSpan(indents[0]);
} else {
IndentSpan is = new IndentSpan(intentSize);
edit.setSpan(is, prev, next, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
edit.setSpan(is, prev, next + 1, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
}
next++;