duplicate the closed property too. fixes Bug #120961.

2003-09-02  Simon Budig  <simon@gimp.org>

	* app/vectors/gimpstroke.c: duplicate the closed property too.
	fixes Bug #120961.
This commit is contained in:
Simon Budig
2003-09-02 10:18:49 +00:00
committed by Simon Budig
parent 1cc7de69e9
commit f1b283bdde
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-09-02 Simon Budig <simon@gimp.org>
* app/vectors/gimpstroke.c: duplicate the closed property too.
fixes Bug #120961.
2003-09-02 Sven Neumann <sven@gimp.org>
* app/paint-funcs/paint-funcs.c: coding style and indentation.

View File

@ -831,6 +831,8 @@ gimp_stroke_real_duplicate (const GimpStroke *stroke)
list->data = gimp_anchor_duplicate (GIMP_ANCHOR (list->data));
}
new_stroke->closed = stroke->closed;
return new_stroke;
}