From 20c6001a72a318e17dc17ae4c8c844e402301f0a Mon Sep 17 00:00:00 2001 From: Alexis Deveria Date: Fri, 23 Apr 2010 17:10:34 +0000 Subject: [PATCH] Fixed fatal bug git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1542 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svgcanvas.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index b417cd63..7213b30b 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -5941,9 +5941,8 @@ function BatchCommand(text) { case 3: // relative move (m) // If the last segment was a "z", this must be relative to if(last_m && segList.getItem(i-1).pathSegType === 1 && !toRel) { - curx = last_m[0]; - cury = last_m[1]; - } + curx = last_m[0]; + cury = last_m[1]; } case 19: // relative smooth quad (t)