mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 18:59:01 +00:00
Allow floating point font percentage
This commit is contained in:
parent
5067f4b1f5
commit
24ff190eef
1 changed files with 1 additions and 1 deletions
|
@ -1106,7 +1106,7 @@ public class HtmlHelper {
|
|||
|
||||
try {
|
||||
if (value.endsWith("%"))
|
||||
return Integer.parseInt(value.substring(0, value.length() - 1).trim()) / 100f * _current;
|
||||
return Float.parseFloat(value.substring(0, value.length() - 1).trim()) / 100 * _current;
|
||||
if (value.endsWith("em"))
|
||||
return Float.parseFloat(value.substring(0, value.length() - 2).trim()) * _current;
|
||||
if (value.endsWith("rem"))
|
||||
|
|
Loading…
Reference in a new issue