Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
bb61effd
Commit
bb61effd
authored
Aug 08, 2013
by
Tebjan Halm
Browse files
visibility naming fix
parent
ca782d2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Basic Shapes/SvgVisualElementStyle.cs
View file @
bb61effd
...
...
@@ -22,8 +22,8 @@ namespace Svg
[
SvgAttribute
(
"visibility"
)]
public
virtual
bool
Visible
{
get
{
return
(
this
.
Attributes
[
"
V
isib
le
"
]
==
null
)
?
true
:
(
bool
)
this
.
Attributes
[
"
V
isib
le
"
];
}
set
{
this
.
Attributes
[
"
V
isib
le
"
]
=
value
;
}
get
{
return
(
this
.
Attributes
[
"
v
isib
ility
"
]
==
null
)
?
true
:
(
bool
)
this
.
Attributes
[
"
v
isib
ility
"
];
}
set
{
this
.
Attributes
[
"
v
isib
ility
"
]
=
value
;
}
}
/// <summary>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment