mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Face names lower case
This commit is contained in:
@@ -1992,7 +1992,8 @@ public class HtmlHelper {
|
||||
}
|
||||
break;
|
||||
case "font-family":
|
||||
ssb.setSpan(new TypefaceSpan(value), start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
String face = value.toLowerCase(Locale.ROOT);
|
||||
ssb.setSpan(new TypefaceSpan(face), start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
break;
|
||||
case "text-decoration":
|
||||
if ("line-through".equals(value))
|
||||
|
||||
Reference in New Issue
Block a user