Prevent selection box from scaling on resize using original method

git-svn-id: http://svg-edit.googlecode.com/svn/branches/transformlist@901 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Alexis Deveria 2009-11-03 17:47:33 +00:00
parent 85d35b6cbd
commit e726d8e9b1
1 changed files with 1 additions and 1 deletions

View File

@ -465,8 +465,8 @@ function BatchCommand(text) {
if (angle) {
var cx = round(oldbox.x + oldbox.width/2) * current_zoom
cy = round(oldbox.y + oldbox.height/2) * current_zoom;
this.selectorGroup.setAttribute("transform", "rotate("+angle+" " + cx + "," + cy + ")");
}
this.selectorGroup.setAttribute("transform", transform);
svgroot.unsuspendRedraw(sr_handle);
};