Fixed: ext-panning removes last created element

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2338 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Luis Aguirre 2013-02-07 18:12:36 +00:00
parent 197c62f7cd
commit 9041ef9609
1 changed files with 5 additions and 1 deletions

View File

@ -36,7 +36,11 @@ svgEditor.addExtension("ext-panning", function() {
mouseUp: function(opts) {
if(svgCanvas.getMode() == "ext-panning") {
svgEditor.setPanning(false);
svgEditor.setPanning(false);
return {
keep: false,
element: null
}
}
}
};