Commit 220d8370 authored by joreg's avatar joreg
Browse files

fixed SvgViewBox.Equals()

parent c1ce332d
......@@ -95,7 +95,7 @@ namespace Svg
public bool Equals(SvgViewBox other)
{
return this.MinX == other.MinX
&& this.MinY == MinY
&& this.MinY == other.MinY
&& this.Width == other.Width
&& this.Height == other.Height;
}
......
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