1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Fixed quote span issues

This commit is contained in:
M66B 2021-05-11 16:38:43 +02:00
parent 32fa8186d0
commit 297e9976ea

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 &&