From: Krzysztof KosiƄski Date: Sat, 13 Mar 2010 02:47:08 +0000 (+0100) Subject: Fix undo stack spam in single-path mode of the spray tool X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d394ad879c8e9f76e9df37b71d7422ade08504c9;p=inkscape.git Fix undo stack spam in single-path mode of the spray tool --- diff --git a/src/spray-context.cpp b/src/spray-context.cpp index 051518e1f..2bdac197f 100644 --- a/src/spray-context.cpp +++ b/src/spray-context.cpp @@ -562,7 +562,7 @@ bool sp_spray_recursive(SPDesktop *desktop, selection->clear(); selection->add(item_copied); selection->add(unionResult); - sp_selected_path_union(selection->desktop()); + sp_selected_path_union_skip_undo(selection->desktop()); selection->add(father); Inkscape::GC::release(copy2); did = true;