Commit 9a1fb1c5 authored by mkb137's avatar mkb137
Browse files

Fixed issue with clip-path being copied from parent to child

parent 83bb847c
......@@ -57,7 +57,7 @@ namespace Svg
[SvgAttribute("clip-path")]
public virtual Uri ClipPath
{
get { return this.Attributes.GetInheritedAttribute<Uri>("clip-path"); }
get { return this.Attributes.GetAttribute<Uri>("clip-path"); }
set { this.Attributes["clip-path"] = value; }
}
......
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