Commit bb7dbb9c authored by Markus Mayer's avatar Markus Mayer
Browse files

fixed invalid font size unit comparison

parent 5bd751c6
......@@ -309,7 +309,7 @@ namespace Svg
// Get the font-size
float fontSize;
var fontSizeUnit = this.FontSize;
if (fontSizeUnit == SvgUnit.None)
if (fontSizeUnit == SvgUnit.None || fontSizeUnit == SvgUnit.Empty)
{
fontSize = 1.0f;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment