mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 21:34:44 +02:00
Replace tabs in headers
This commit is contained in:
@@ -2806,7 +2806,7 @@ public class HtmlHelper {
|
||||
}
|
||||
|
||||
static Spanned highlightHeaders(Context context, String headers, boolean blocklist) {
|
||||
SpannableStringBuilder ssb = new SpannableStringBuilderEx(headers);
|
||||
SpannableStringBuilder ssb = new SpannableStringBuilderEx(headers.replaceAll("\\t", " "));
|
||||
int textColorLink = Helper.resolveColor(context, android.R.attr.textColorLink);
|
||||
int colorVerified = Helper.resolveColor(context, R.attr.colorVerified);
|
||||
int colorWarning = Helper.resolveColor(context, R.attr.colorWarning);
|
||||
|
||||
Reference in New Issue
Block a user