From 2aac69696480a8de757d42a2cce21c7478cc8ade Mon Sep 17 00:00:00 2001 From: Alexis Deveria Date: Mon, 24 Aug 2009 19:20:52 +0000 Subject: [PATCH] Fixed bug in last update git-svn-id: http://svg-edit.googlecode.com/svn/trunk@460 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svgcanvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index 9e68a940..6e95e2ff 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -1340,7 +1340,7 @@ function SvgCanvas(c) case "multiselect": assignAttributes(rubberBox, { 'x': Math.min(start_x,x), - 'y': Math.min(start_y,y)), + 'y': Math.min(start_y,y), 'width': Math.abs(x-start_x), 'height': Math.abs(y-start_y) },100);