From abdafedeaedd7274a626a14a17d51f3c26127925 Mon Sep 17 00:00:00 2001 From: Jeff Schiller Date: Mon, 31 Aug 2009 19:24:45 +0000 Subject: [PATCH] Really fix rotation of poly point grips when there are multiple paths with some rotated git-svn-id: http://svg-edit.googlecode.com/svn/trunk@513 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svgcanvas.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index f43b689a..d0784feb 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -1748,6 +1748,8 @@ function SvgCanvas(c) addPointGripToPoly(current_poly_pts[i], current_poly_pts[i+1],i/2); } } + var pointGripContainer = document.getElementById("polypointgrip_container"); + pointGripContainer.setAttribute("transform", current_poly.getAttribute("transform")); }; var addPointGripToPoly = function(x,y,index) {