From 07977fb6502670fcd26bd55d1655a14a66925b4d Mon Sep 17 00:00:00 2001 From: Jabier Arraiza Date: Thu, 7 Nov 2019 23:07:14 +0100 Subject: Fix issue LPE Line Join rendering wrong for arcs line join. https://gitlab.com/inkscape/inkscape/issues/490 --- src/helper/geom-pathstroke.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/helper') diff --git a/src/helper/geom-pathstroke.cpp b/src/helper/geom-pathstroke.cpp index e996acb40..e706667bc 100644 --- a/src/helper/geom-pathstroke.cpp +++ b/src/helper/geom-pathstroke.cpp @@ -1115,7 +1115,7 @@ void outline_join(Geom::Path &res, Geom::Path const& temp, Geom::Point in_tang, join_data jd(res, temp, in_tang, out_tang, miter, width); if (!(Geom::cross(in_tang, out_tang) > 0)) { - join = Inkscape::JOIN_ROUND; + join = Inkscape::JOIN_BEVEL; } join_func *jf; switch (join) { -- cgit v1.2.3