diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index 944b7bf1..477ea81b 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -288,6 +288,7 @@ function SvgCanvas(c) this.updateGripCursors = function(angle) { var dir_arr = []; var steps = Math.round(angle / 45); + if(steps < 0) steps += 8; for (dir in this.selectorGrips) { dir_arr.push(dir); }