mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Fixed warning
This commit is contained in:
parent
566431884b
commit
ed3c3becaf
1 changed files with 1 additions and 1 deletions
|
@ -2681,7 +2681,7 @@ public class HtmlHelper {
|
||||||
// Apply calculated font size
|
// Apply calculated font size
|
||||||
String xFontSize = element.attr("x-font-size-rel");
|
String xFontSize = element.attr("x-font-size-rel");
|
||||||
if (!TextUtils.isEmpty(xFontSize)) {
|
if (!TextUtils.isEmpty(xFontSize)) {
|
||||||
Float fsize = Float.parseFloat(xFontSize);
|
float fsize = Float.parseFloat(xFontSize);
|
||||||
if (fsize != 1.0f)
|
if (fsize != 1.0f)
|
||||||
setSpan(ssb, new RelativeSizeSpan(fsize), start, ssb.length());
|
setSpan(ssb, new RelativeSizeSpan(fsize), start, ssb.length());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue