Skip to content

Commit

Permalink
SVG import: Fix default stroke-linecap
Browse files Browse the repository at this point in the history
  • Loading branch information
jumostedu committed Mar 9, 2024
1 parent aef4364 commit b7f3047
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/libsvg/shape.cc
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ shape::get_stroke_linecap() const
} else if (cap == "square") {
return ClipperLib::etOpenSquare;
}
return ClipperLib::etOpenSquare;
return ClipperLib::etOpenButt;
}

ClipperLib::JoinType
Expand Down

0 comments on commit b7f3047

Please sign in to comment.