Commit 775ed568 authored by Tebjan Halm's avatar Tebjan Halm
Browse files

fixed corner radius wrong value bug

parent 1fcb5709
......@@ -26,6 +26,8 @@ namespace Svg
{
_width = new SvgUnit(0.0f);
_height = new SvgUnit(0.0f);
_cornerRadiusX = new SvgUnit(0.0f);
_cornerRadiusY = new SvgUnit(0.0f);
}
/// <summary>
......
......@@ -22,6 +22,8 @@ namespace Svg
_defaults["clip-rule"] = "nonzero";
_defaults["transform"] = "";
_defaults["rx"] = "0";
_defaults["ry"] = "0";
_defaults["fill"] = "Black";
_defaults["fill-opacity"] = "1";
......
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