Fix Issue 55: height of bottom toolbar. Also improve code for recalculating outline/dimensions. Also fix it so that multiple elements can be moved using the arrow keys

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@281 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Jeff Schiller
2009-07-08 00:03:08 +00:00
parent cc545ba273
commit 5551bc97ca
3 changed files with 153 additions and 137 deletions

View File

@@ -350,7 +350,7 @@ function svg_edit_setup() {
}
var moveSelected = function(dx,dy) {
if (selectedElement != null) {
if (selectedElement != null || multiselected) {
svgCanvas.moveSelectedElement(dx,dy);
}
}