From 9c811f25d09b6e1f9dc73f722a46137306f519a4 Mon Sep 17 00:00:00 2001 From: Simon Budig Date: Wed, 21 May 2003 01:02:37 +0000 Subject: [PATCH] Extended to be able to handle multiple polygons in a sane way. 2003-05-21 Simon Budig * app/core/gimpscanconvert.[ch]: Extended to be able to handle multiple polygons in a sane way. * app/core/gimpimage-mask-select.c: Use this to convert multiple-stroke vectors objects to selections. Libart rocks! * app/tools/gimpiscissorstool.c: Changed accordingly. (The previous commit did not run cleanly) --- app/tools/gimpiscissorstool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tools/gimpiscissorstool.c b/app/tools/gimpiscissorstool.c index 91fe9d2c87..f6f703473e 100644 --- a/app/tools/gimpiscissorstool.c +++ b/app/tools/gimpiscissorstool.c @@ -558,7 +558,7 @@ iscissors_convert (GimpIscissorsTool *iscissors, points[i].y = packed >> 16; } - gimp_scan_convert_add_points (sc, n_points, points); + gimp_scan_convert_add_points (sc, n_points, points, FALSE); g_free (points); }