Fixed quote span issues

This commit is contained in:
M66B 2021-05-11 16:38:43 +02:00
parent 32fa8186d0
commit 297e9976ea
1 changed files with 1 additions and 1 deletions

View File

@ -597,7 +597,7 @@ public class FragmentCompose extends FragmentBase {
for (QuoteSpan span : spans) {
int s = text.getSpanStart(span);
int e = text.getSpanEnd(span);
int f = text.getSpanFlags(span) | Spanned.SPAN_PARAGRAPH;
int f = text.getSpanFlags(span);
Log.i(span + " " + s + "..." + e + " added=" + added);
if (s > 0 && added - s > 0 && e - (added + 1) > 0 &&