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
22f6e438
Commit
22f6e438
authored
Nov 12, 2013
by
Tebjan Halm
Browse files
fixes issue #31
parent
83834eb8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Painting/SvgPaintServerFactory.cs
View file @
22f6e438
...
...
@@ -49,7 +49,7 @@ namespace Svg
if
(
value
is
string
)
{
var
s
=
(
string
)
value
;
if
(
s
==
"none"
)
if
(
String
.
Equals
(
s
,
"none"
,
StringComparison
.
OrdinalIgnoreCase
)
)
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