Fixed: Invalid css width/height when using percent value
--HG-- branch : develop
This commit is contained in:
parent
923084a818
commit
39e0f4b4f2
1 changed files with 8 additions and 0 deletions
|
@ -723,6 +723,8 @@ namespace NLGUI
|
|||
style.Width = tmpf * style.FontSize;
|
||||
else if (unit == "pt")
|
||||
style.FontSize = tmpf / 0.75f;
|
||||
else if (unit == "%")
|
||||
style.Width = 0; // TODO: style.WidthRatio
|
||||
else
|
||||
style.Width = tmpf;
|
||||
}
|
||||
|
@ -739,6 +741,8 @@ namespace NLGUI
|
|||
style.Height = tmpf * style.FontSize;
|
||||
else if (unit == "pt")
|
||||
style.FontSize = tmpf / 0.75f;
|
||||
else if (unit == "%")
|
||||
style.Height = 0; // TODO: style.HeightRatio
|
||||
else
|
||||
style.Height = tmpf;
|
||||
}
|
||||
|
@ -755,6 +759,8 @@ namespace NLGUI
|
|||
style.MaxWidth = tmpf * style.FontSize;
|
||||
else if (unit == "pt")
|
||||
style.FontSize = tmpf / 0.75f;
|
||||
else if (unit == "%")
|
||||
style.MaxWidth = 0; // TODO: style.MaxWidthRatio
|
||||
else
|
||||
style.MaxWidth = tmpf;
|
||||
}
|
||||
|
@ -771,6 +777,8 @@ namespace NLGUI
|
|||
style.MaxHeight = tmpf * style.FontSize;
|
||||
else if (unit == "pt")
|
||||
style.FontSize = tmpf / 0.75f;
|
||||
else if (unit == "%")
|
||||
style.MaxHeight = 0; // TODO: style.MaxHeightRatio
|
||||
else
|
||||
style.MaxHeight = tmpf;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue