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
533fb684
Commit
533fb684
authored
Aug 03, 2009
by
ddpruitt
Browse files
Fixed #9525 - Minor bug in SvgTransformConverter.ConvertFrom rotate handling. Applied patch #2897.
parent
b3b2655c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Transforms/SvgTransformConverter.cs
View file @
533fb684
...
@@ -78,7 +78,7 @@ namespace Svg.Transforms
...
@@ -78,7 +78,7 @@ namespace Svg.Transforms
float
angle
=
float
.
Parse
(
args
[
0
],
NumberStyles
.
Float
,
CultureInfo
.
InvariantCulture
);
float
angle
=
float
.
Parse
(
args
[
0
],
NumberStyles
.
Float
,
CultureInfo
.
InvariantCulture
);
if
(
args
.
Length
==
0
)
if
(
args
.
Length
==
1
)
{
{
transformList
.
Add
(
new
SvgRotate
(
angle
));
transformList
.
Add
(
new
SvgRotate
(
angle
));
}
}
...
...
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