From 3d3711e499734cbcd9ceaa3939307c5c96c2408f Mon Sep 17 00:00:00 2001 From: Jeff Schiller Date: Fri, 18 Dec 2009 06:20:37 +0000 Subject: [PATCH] fixtransforms branch: Fix bug in changeSelectedAttributeNoUndo() that made Opera and WebKit hiccup git-svn-id: http://svg-edit.googlecode.com/svn/branches/fixtransforms@1062 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svgcanvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index 31e9cab9..99ae8698 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -5595,7 +5595,7 @@ function BatchCommand(text) { var xform = tlist.getItem(n); if (xform.type == 4) { // remove old rotate - tlist.removeItem(xform); + tlist.removeItem(n); var box = canvas.getBBox(elem); var center = transformPoint(box.x+box.width/2, box.y+box.height/2, transformListToTransform(tlist).matrix);