summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-taperstroke.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-30 00:33:36 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-30 00:33:36 +0000
commite667170b1473faccbeabece0cef7d24ebf15bef9 (patch)
treed9922ad8069d482568a0a773cb3ae0e1ba4bdd57 /src/live_effects/lpe-taperstroke.cpp
parentFix build errors and a few small bugs (diff)
downloadinkscape-e667170b1473faccbeabece0cef7d24ebf15bef9.tar.gz
inkscape-e667170b1473faccbeabece0cef7d24ebf15bef9.zip
Minor fixes
(bzr r13090.1.37)
Diffstat (limited to 'src/live_effects/lpe-taperstroke.cpp')
-rwxr-xr-xsrc/live_effects/lpe-taperstroke.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-taperstroke.cpp b/src/live_effects/lpe-taperstroke.cpp
index 0e9752d31..b4e43209d 100755
--- a/src/live_effects/lpe-taperstroke.cpp
+++ b/src/live_effects/lpe-taperstroke.cpp
@@ -352,8 +352,8 @@ Geom::PathVector LPETaperStroke::doEffect_path(Geom::PathVector const& path_in)
-fabs(line_width), static_cast<LineJoinType>(join_type.get_value()), miter_limit);
if (!zeroEnd) {
- throwaway_path.setInitial(real_path.finalPoint());
- real_path.append(throwaway_path);
+ //throwaway_path.setInitial(real_path.finalPoint());
+ real_path.append(throwaway_path, Geom::Path::STITCH_DISCONTINUOUS);
} else {
real_path.append(throwaway_path, Geom::Path::STITCH_DISCONTINUOUS);
}