mirror of https://github.com/M66B/FairEmail.git
Debug: inserted spans
This commit is contained in:
parent
04730c7d1a
commit
32eb7c96f4
|
@ -318,7 +318,6 @@ public class StyleHelper {
|
||||||
if (renum)
|
if (renum)
|
||||||
StyleHelper.renumber(text, false, etBody.getContext());
|
StyleHelper.renumber(text, false, etBody.getContext());
|
||||||
|
|
||||||
if (BuildConfig.DEBUG)
|
|
||||||
StyleHelper.markAsInserted(text, -1, -1);
|
StyleHelper.markAsInserted(text, -1, -1);
|
||||||
} catch (Throwable ex) {
|
} catch (Throwable ex) {
|
||||||
Log.e(ex);
|
Log.e(ex);
|
||||||
|
@ -1767,6 +1766,8 @@ public class StyleHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void markAsInserted(Editable text, int start, int end) {
|
static void markAsInserted(Editable text, int start, int end) {
|
||||||
|
if (!BuildConfig.DEBUG)
|
||||||
|
return;
|
||||||
for (InsertedSpan span : text.getSpans(0, text.length(), InsertedSpan.class))
|
for (InsertedSpan span : text.getSpans(0, text.length(), InsertedSpan.class))
|
||||||
text.removeSpan(span);
|
text.removeSpan(span);
|
||||||
if (start >= 0 && start < end && end <= text.length()) {
|
if (start >= 0 && start < end && end <= text.length()) {
|
||||||
|
|
Loading…
Reference in New Issue