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

visibility naming fix

parent ca782d2f
......@@ -22,8 +22,8 @@ namespace Svg
[SvgAttribute("visibility")]
public virtual bool Visible
{
get { return (this.Attributes["Visible"] == null) ? true : (bool)this.Attributes["Visible"]; }
set { this.Attributes["Visible"] = value; }
get { return (this.Attributes["visibility"] == null) ? true : (bool)this.Attributes["visibility"]; }
set { this.Attributes["visibility"] = value; }
}
/// <summary>
......
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