mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 03:05:31 +00:00
Fixed ident/newline
This commit is contained in:
parent
4555c8f031
commit
fd9cfd9c7f
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ public class StyleHelper {
|
||||||
edit.removeSpan(indents[0]);
|
edit.removeSpan(indents[0]);
|
||||||
} else {
|
} else {
|
||||||
IndentSpan is = new IndentSpan(intentSize);
|
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++;
|
next++;
|
||||||
|
|
Loading…
Reference in a new issue