Skip to content

Commit

Permalink
Fix path render
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAugust12 committed Nov 28, 2023
1 parent f1a5cb6 commit 23e3f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -584,8 +584,8 @@ void Renderer::drawPath(Path* path) const {
// Close path command
Line lpath(curPoint, firstPoint, path->getOutlineColor(),
path->getOutlineThickness());
drawLine(&lpath);
lpath.setTransforms(path->getTransforms());
drawLine(&lpath);
curPoint = firstPoint;
}
}
Expand Down

0 comments on commit 23e3f78

Please sign in to comment.