Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
60777d50
Commit
60777d50
authored
Aug 20, 2015
by
Tebjan Halm
Browse files
Merge pull request #179 from ubbn/master
Fix to #173: Sub elements in group element are not rendered
parents
8ef8a97a
e3503b61
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/SvgElement.cs
View file @
60777d50
...
...
@@ -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
);
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment