Fixed more zoom-related bugs (not all)

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1238 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Alexis Deveria
2010-01-18 18:03:09 +00:00
parent d9148f71b4
commit 0927d04319
2 changed files with 55 additions and 40 deletions

View File

@@ -6400,7 +6400,7 @@ function BatchCommand(text) {
selectorManager.selectorParentGroup.setAttribute("transform","translate(" + x + "," + y + ")");
return {x:x, y:y, d_x:x - old_x, d_y:y - old_y};
return {x:x, y:y, old_x:old_x, old_y:old_y, d_x:x - old_x, d_y:y - old_y};
}
this.getStrokedBBox = function(elems) {