Page 1 of 1

Bug in DrawSetTextInterwordSpacing

Posted: 2009-12-03T14:31:32-07:00
by osolo
Hi All,

In wand/drawing-wand.c, online 5983 we see:
(void) MvgPrintf(wand,"interword_spacing %lf\n",interword_spacing);

It should really be:
(void) MvgPrintf(wand,"interword-spacing %lf\n",interword_spacing);

(Notice the dash instead of an underscore between the words interword and spacing in the string).

We see a similar bug on line 5942 where "interline_spacing" needs to change to "interline-spacing"

Cheers!

Re: Bug in DrawSetTextInterwordSpacing

Posted: 2009-12-03T16:47:28-07:00
by magick
Thanks, we'll get a patch into the Subversion trunk by sometime tomorrow.