Fixed Issue 386: Can't move a group of 9 objects or more with the mouse

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1139 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Alexis Deveria 2010-01-04 13:46:41 +00:00
parent 76b6fc1b5e
commit 4989d74a63
1 changed files with 2 additions and 2 deletions

View File

@ -2083,8 +2083,8 @@ function BatchCommand(text) {
}
});
// Make sure null value is at the end
if(!selectedElements[0]) selectedElements.push(selectedElements.shift());
// Make sure first elements are not null
while(selectedElements[0] == null) selectedElements.shift(0);
};