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
8fc0a41b
Commit
8fc0a41b
authored
Dec 22, 2015
by
HeinrichAD
Browse files
SvgAttributeCollection optimize.
parent
d88540e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/SvgAttributeCollection.cs
View file @
8fc0a41b
...
...
@@ -73,9 +73,10 @@ namespace Svg
if
(
this
.
_owner
.
Parent
!=
null
)
{
if
(
this
.
_owner
.
Parent
.
Attributes
[
attributeName
]
!=
null
)
var
parentAttribute
=
this
.
_owner
.
Parent
.
Attributes
[
attributeName
];
if
(
parentAttribute
!=
null
)
{
return
(
TAttributeType
)
this
.
_owner
.
P
arent
.
Attribute
s
[
attributeName
]
;
return
(
TAttributeType
)
p
arentAttribute
;
}
}
...
...
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