summaryrefslogtreecommitdiffstats
path: root/src/draw-context.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-05-28 14:38:37 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-05-28 14:38:37 +0000
commit6c9378a68e4d3a37a9122e2cc68e3302701b1e8d (patch)
treebaaa4930923a8ab5a5364311cd363433ffbb6aa8 /src/draw-context.cpp
parentOption to keep selection when changing layers (diff)
downloadinkscape-6c9378a68e4d3a37a9122e2cc68e3302701b1e8d.tar.gz
inkscape-6c9378a68e4d3a37a9122e2cc68e3302701b1e8d.zip
break apart faster: prepend to list instead of append, add objects to selection wholesale instead of one by one
(bzr r1038)
Diffstat (limited to 'src/draw-context.cpp')
-rw-r--r--src/draw-context.cpp2
1 files changed, 1 insertions, 1 deletions
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) {