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
f154448a
Commit
f154448a
authored
Sep 17, 2013
by
rokam
Browse files
Fix when fill="none"
This fix the wrong fill when fill="none". The original version fill it in black.
parent
ded01d09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Painting/SvgPaintServerFactory.cs
View file @
f154448a
...
...
@@ -50,7 +50,7 @@ namespace Svg
{
var
s
=
(
string
)
value
;
if
(
s
==
"none"
)
return
null
;
return
SvgPaintServer
.
None
;
else
return
SvgPaintServerFactory
.
Create
(
s
,
(
SvgDocument
)
context
);
}
...
...
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