From 777603475313631c3ce1886558c1ddc7a178be12 Mon Sep 17 00:00:00 2001 From: Alexis Deveria Date: Fri, 13 Aug 2010 15:37:50 +0000 Subject: [PATCH] Applied fix for path arc segment delimiter big by zeware (issue 639) git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1660 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 42fa26f1..8a3711c2 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -7260,7 +7260,7 @@ var pathActions = this.pathActions = function() { var addToD = function(pnts, more, last) { var str = ''; var more = more?' '+more.join(' '):''; - var last = last?shortFloat(last):''; + var last = last?' '+shortFloat(last):''; $.each(pnts, function(i, pnt) { pnts[i] = shortFloat(pnt); });