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
master
Alexis Deveria 2010-08-13 15:37:50 +00:00
parent 0930a58411
commit 7776034753
1 changed files with 1 additions and 1 deletions

View File

@ -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);
});