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
master
Jeff Schiller 2009-08-31 19:24:45 +00:00
parent b05937aabc
commit abdafedeae
1 changed files with 2 additions and 0 deletions

View File

@ -1748,6 +1748,8 @@ function SvgCanvas(c)
addPointGripToPoly(current_poly_pts[i], current_poly_pts[i+1],i/2); 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) { var addPointGripToPoly = function(x,y,index) {