diff options
| author | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-03-30 00:33:36 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-03-30 00:33:36 +0000 |
| commit | e667170b1473faccbeabece0cef7d24ebf15bef9 (patch) | |
| tree | d9922ad8069d482568a0a773cb3ae0e1ba4bdd57 /src/live_effects/lpe-taperstroke.cpp | |
| parent | Fix build errors and a few small bugs (diff) | |
| download | inkscape-e667170b1473faccbeabece0cef7d24ebf15bef9.tar.gz inkscape-e667170b1473faccbeabece0cef7d24ebf15bef9.zip | |
Minor fixes
(bzr r13090.1.37)
Diffstat (limited to 'src/live_effects/lpe-taperstroke.cpp')
| -rwxr-xr-x | src/live_effects/lpe-taperstroke.cpp | 4 |
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); } |
