Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
c1470c67
Commit
c1470c67
authored
8 years ago
by
mrbean-bremen
Browse files
Options
Download
Email Patches
Plain Diff
Reverted unneeded part of previous fix
- caused regression
parent
8ad92e3a
master
netstandard2
nuget2.4.2
nuget2.4.1
nuget2.4
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/Paths/SvgLineSegment.cs
+1
-4
Source/Paths/SvgLineSegment.cs
Source/Paths/SvgMoveToSegment.cs
+1
-4
Source/Paths/SvgMoveToSegment.cs
with
2 additions
and
8 deletions
+2
-8
Source/Paths/SvgLineSegment.cs
+
1
-
4
View file @
c1470c67
...
...
@@ -15,10 +15,7 @@ namespace Svg.Pathing
public
override
void
AddToPath
(
System
.
Drawing
.
Drawing2D
.
GraphicsPath
graphicsPath
)
{
if
(
this
.
Start
!=
this
.
End
)
{
graphicsPath
.
AddLine
(
this
.
Start
,
this
.
End
);
}
graphicsPath
.
AddLine
(
this
.
Start
,
this
.
End
);
}
public
override
string
ToString
()
...
...
This diff is collapsed.
Click to expand it.
Source/Paths/SvgMoveToSegment.cs
+
1
-
4
View file @
c1470c67
...
...
@@ -15,10 +15,7 @@ namespace Svg.Pathing
public
override
void
AddToPath
(
System
.
Drawing
.
Drawing2D
.
GraphicsPath
graphicsPath
)
{
if
(
this
.
Start
!=
this
.
End
)
{
graphicsPath
.
StartFigure
();
}
graphicsPath
.
StartFigure
();
}
public
override
string
ToString
()
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help