Skip to content

Commit

Permalink
Atom - PenAndPaper - Actually use the smoothing function
Browse files Browse the repository at this point in the history
  • Loading branch information
graphieros committed Nov 25, 2024
1 parent d0e9941 commit ad8bd77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atoms/PenAndPaper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ function stopDrawing() {
if (isDrawing.value) {
stack.value.push({
strokeWidth: strokeWidth.value,
path: currentPath.value,
path: optimizeSvgPath(smoothPath(currentPath.value)),
color: currentColor.value
});
redoStack.value = [];
Expand Down

0 comments on commit ad8bd77

Please sign in to comment.