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
8710f838
Commit
8710f838
authored
May 09, 2016
by
Tebjan Halm
Browse files
Merge pull request #230 from popekim/hotfix/patterntransform
[bugfix] now pattern reads proper transform named "patternTransform"
parents
8670c344
4a340a54
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Painting/SvgPatternServer.cs
View file @
8710f838
...
...
@@ -131,8 +131,8 @@ namespace Svg
[
SvgAttribute
(
"patternTransform"
)]
public
SvgTransformCollection
PatternTransform
{
get
{
return
(
this
.
Attributes
.
GetAttribute
<
SvgTransformCollection
>(
"
gradient
Transform"
));
}
set
{
this
.
Attributes
[
"
gradient
Transform"
]
=
value
;
}
get
{
return
(
this
.
Attributes
.
GetAttribute
<
SvgTransformCollection
>(
"
pattern
Transform"
));
}
set
{
this
.
Attributes
[
"
pattern
Transform"
]
=
value
;
}
}
private
Matrix
EffectivePatternTransform
...
...
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