Yet more work on Issue 382: Only append the selector parent group when it needs to happen

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1123 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2009-12-29 18:12:32 +00:00
parent 9015f80156
commit c3fa557e60
1 changed files with 2 additions and 1 deletions

View File

@ -608,6 +608,7 @@ function BatchCommand(text) {
// this keeps the selector groups as the last child in the document // this keeps the selector groups as the last child in the document
this.update = function() { this.update = function() {
if (svgroot.lastChild != this.selectorParentGroup)
this.selectorParentGroup = svgroot.appendChild(this.selectorParentGroup); this.selectorParentGroup = svgroot.appendChild(this.selectorParentGroup);
}; };