"Tests/W3CTestSuite/vscode:/vscode.git/clone" did not exist on "d5c659a5475b66bf754bf3d7162775ad3be0ddaf"
Commit 533fb684 authored by ddpruitt's avatar ddpruitt
Browse files

Fixed #9525 - Minor bug in SvgTransformConverter.ConvertFrom rotate handling. Applied patch #2897.

parent b3b2655c
......@@ -78,7 +78,7 @@ namespace Svg.Transforms
float angle = float.Parse(args[0], NumberStyles.Float, CultureInfo.InvariantCulture);
if (args.Length == 0)
if (args.Length == 1)
{
transformList.Add(new SvgRotate(angle));
}
......
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