From 6c9378a68e4d3a37a9122e2cc68e3302701b1e8d Mon Sep 17 00:00:00 2001 From: bulia byak Date: Sun, 28 May 2006 14:38:37 +0000 Subject: break apart faster: prepend to list instead of append, add objects to selection wholesale instead of one by one (bzr r1038) --- src/draw-context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/draw-context.cpp') diff --git a/src/draw-context.cpp b/src/draw-context.cpp index 6263880a4..6bea0851b 100644 --- a/src/draw-context.cpp +++ b/src/draw-context.cpp @@ -301,7 +301,7 @@ spdc_attach_selection(SPDrawContext *dc, Inkscape::Selection *sel) SPCurve *norm = sp_shape_get_curve(SP_SHAPE(item)); sp_curve_transform(norm, sp_item_i2d_affine(dc->white_item)); g_return_if_fail( norm != NULL ); - dc->white_curves = sp_curve_split(norm); + dc->white_curves = g_slist_reverse(sp_curve_split(norm)); sp_curve_unref(norm); /* Anchor list */ for (GSList *l = dc->white_curves; l != NULL; l = l->next) { -- cgit v1.2.3