mirror of https://github.com/GNOME/gimp.git
actually increment the coord index when iterating the coords array. Fixes
2003-05-15 Michael Natterer <mitch@gimp.org> * app/vectors/gimpbezierstroke.c (gimp_bezier_stroke_new_from_coords): actually increment the coord index when iterating the coords array. Fixes bug #113049.
This commit is contained in:
parent
db9569cb7c
commit
c1eddd4fbc
|
@ -1,3 +1,9 @@
|
|||
2003-05-15 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/vectors/gimpbezierstroke.c
|
||||
(gimp_bezier_stroke_new_from_coords): actually increment the coord
|
||||
index when iterating the coords array. Fixes bug #113049.
|
||||
|
||||
2003-05-14 Pedro Gimeno <pggimeno@wanadoo.es>
|
||||
|
||||
* plug-ins/common/blur.c (blur): Ported a change from STABLE
|
||||
|
|
|
@ -210,7 +210,7 @@ gimp_bezier_stroke_new_from_coords (const GimpCoords *coords,
|
|||
while (count < ncoords)
|
||||
{
|
||||
last_anchor = gimp_bezier_stroke_extend (bezier_stroke,
|
||||
&(coords[count]),
|
||||
&coords[count++],
|
||||
last_anchor,
|
||||
EXTEND_SIMPLE);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue