diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-08-03 19:41:43 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-08-03 19:41:43 +0000 |
| commit | 8660bc7c529e971d1d22244547b0043e9016732f (patch) | |
| tree | 83be441aa8ad1082d51a5b1797d244768818fe67 /src/display/curve.cpp | |
| parent | update 2geom (diff) | |
| download | inkscape-8660bc7c529e971d1d22244547b0043e9016732f.tar.gz inkscape-8660bc7c529e971d1d22244547b0043e9016732f.zip | |
fix error in appending paths to existing paths. fixes bug #253639
(bzr r6550)
Diffstat (limited to 'src/display/curve.cpp')
| -rw-r--r-- | src/display/curve.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display/curve.cpp b/src/display/curve.cpp index 075f7df9e..d142b6eac 100644 --- a/src/display/curve.cpp +++ b/src/display/curve.cpp @@ -509,7 +509,7 @@ SPCurve::append_continuous(SPCurve const *c1, gdouble tolerance) } } else { - append(c1, false); + append(c1, true); } return this; |
