summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-03-13 02:47:08 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-03-13 02:47:08 +0000
commitbf9401920c54b6952e22f211bf17dc5366bf4b36 (patch)
tree864b3d60a59ef23c65f5a0fcee5fb8c809ff329f /src
parentFix crash in spray tool caused by rev. 9158 (diff)
downloadinkscape-bf9401920c54b6952e22f211bf17dc5366bf4b36.tar.gz
inkscape-bf9401920c54b6952e22f211bf17dc5366bf4b36.zip
Fix undo stack spam in single-path mode of the spray tool
(bzr r9182)
Diffstat (limited to 'src')
-rw-r--r--src/spray-context.cpp2
1 files changed, 1 insertions, 1 deletions
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;