1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Added light font weight

This commit is contained in:
M66B 2020-04-26 16:02:21 +02:00
parent 06cdd66ae2
commit 4f2a1f7d19

View file

@ -1061,6 +1061,7 @@ public class HtmlHelper {
value = value.toLowerCase(Locale.ROOT).trim();
switch (value) {
case "light":
case "lighter":
return 300;
case "normal":
@ -1078,7 +1079,6 @@ public class HtmlHelper {
}
return null;
}
private static Float getFontSize(String value, Integer current) {