Commit f154448a authored by rokam's avatar rokam
Browse files

Fix when fill="none"

This fix the wrong fill when fill="none". The original version fill it in black.
parent ded01d09
...@@ -50,7 +50,7 @@ namespace Svg ...@@ -50,7 +50,7 @@ namespace Svg
{ {
var s = (string) value; var s = (string) value;
if(s == "none") if(s == "none")
return null; return SvgPaintServer.None;
else else
return SvgPaintServerFactory.Create(s, (SvgDocument)context); return SvgPaintServerFactory.Create(s, (SvgDocument)context);
} }
......
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