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:
parent
32fa8186d0
commit
297e9976ea
1 changed files with 1 additions and 1 deletions
|
@ -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 &&
|
||||
|
|
Loading…
Reference in a new issue