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
9a1fb1c5
Commit
9a1fb1c5
authored
Mar 24, 2015
by
mkb137
Browse files
Fixed issue with clip-path being copied from parent to child
parent
83bb847c
Changes
1
Show whitespace changes
Inline
Side-by-side
Source/Basic Shapes/SvgVisualElement.cs
View file @
9a1fb1c5
...
@@ -57,7 +57,7 @@ namespace Svg
...
@@ -57,7 +57,7 @@ namespace Svg
[
SvgAttribute
(
"clip-path"
)]
[
SvgAttribute
(
"clip-path"
)]
public
virtual
Uri
ClipPath
public
virtual
Uri
ClipPath
{
{
get
{
return
this
.
Attributes
.
Get
Inherited
Attribute
<
Uri
>(
"clip-path"
);
}
get
{
return
this
.
Attributes
.
GetAttribute
<
Uri
>(
"clip-path"
);
}
set
{
this
.
Attributes
[
"clip-path"
]
=
value
;
}
set
{
this
.
Attributes
[
"clip-path"
]
=
value
;
}
}
}
...
...
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