Clear debug errors

This commit is contained in:
M66B 2022-02-15 18:57:41 +01:00
parent bc052888e2
commit 3b54867ad8
1 changed files with 2 additions and 0 deletions

View File

@ -3226,6 +3226,8 @@ public class HtmlHelper {
.append(android.util.Log.getStackTraceString(ex)).append('\n');
setSpan(ssb, StyleHelper.getTypefaceSpan("Cousine", context), s, ssb.length());
setSpan(ssb, new RelativeSizeSpan(HtmlHelper.FONT_SMALL), s, ssb.length());
int colorWarning = Helper.resolveColor(context, R.attr.colorWarning);
setSpan(ssb, new ForegroundColorSpan(colorWarning), s, ssb.length());
}
}