Commit e3503b61 authored by ubbn's avatar ubbn
Browse files

Fix to #173: Sub elements in group element are not rendered

parent caae2cce
......@@ -800,9 +800,14 @@ namespace Svg
}
else
{
var childPath = GetPaths(child, renderer);
if(child.Transforms != null)
childPath.Transform(child.Transforms.GetMatrix());
var childPath = GetPaths(child, renderer);
if (childPath != null && childPath.PointCount > 0)
{
if (child.Transforms != null)
childPath.Transform(child.Transforms.GetMatrix());
ret.AddPath(childPath, false);
}
}
}
......
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