Commit a89c5463 authored by Tebjan Halm's avatar Tebjan Halm
Browse files

fixed event deep copy

parent 30bbbc4b
...@@ -677,6 +677,8 @@ namespace Svg ...@@ -677,6 +677,8 @@ namespace Svg
newObj.MouseMove += delegate { }; newObj.MouseMove += delegate { };
else if (attr.Event.Name == "MouseScroll") else if (attr.Event.Name == "MouseScroll")
newObj.MouseScroll += delegate { }; newObj.MouseScroll += delegate { };
else if (attr.Event.Name == "Click")
newObj.Click += delegate { };
} }
} }
......
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