diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index 4636b908..aecbcdf3 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -6788,7 +6788,10 @@ var pathActions = this.pathActions = function() { d_attr += "L" + round(x) + "," + round(y) + " "; newpath.setAttribute("d", d_attr); - + + x *= current_zoom; + y *= current_zoom; + // set stretchy line to latest point assignAttributes(stretchy, { 'x1': x,