mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 18:27:43 +00:00
Fixed extending indent spans
This commit is contained in:
parent
084dc67ea9
commit
d065a8aa33
1 changed files with 1 additions and 1 deletions
|
@ -2694,7 +2694,7 @@ public class HtmlHelper {
|
|||
else
|
||||
setSpan(ssb, new QuoteSpan(colorBlockquote, quoteStripe, quoteGap), start, ssb.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
||||
} else
|
||||
setSpan(ssb, new IndentSpan(intentSize), start, ssb.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
|
||||
setSpan(ssb, new IndentSpan(intentSize), start, ssb.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
|
||||
break;
|
||||
case "br":
|
||||
ssb.append('\n');
|
||||
|
|
Loading…
Reference in a new issue