summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-04-27 08:30:53 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-04-27 08:30:53 +0000
commitc92ecb81584366e61c559709383598a9f7343ffd (patch)
tree802ee1511d28dc8f2b1f6095a4bd0432b39f7f8b /src
parentMissing added (diff)
downloadinkscape-c92ecb81584366e61c559709383598a9f7343ffd.tar.gz
inkscape-c92ecb81584366e61c559709383598a9f7343ffd.zip
Fixed undo for eraser to be a single step
(bzr r5528)
Diffstat (limited to 'src')
-rw-r--r--src/eraser-context.cpp2
-rw-r--r--src/splivarot.cpp6
-rw-r--r--src/splivarot.h1
3 files changed, 8 insertions, 1 deletions
diff --git a/src/eraser-context.cpp b/src/eraser-context.cpp
index f8748558d..3d142a9d0 100644
--- a/src/eraser-context.cpp
+++ b/src/eraser-context.cpp
@@ -837,7 +837,7 @@ set_to_accumulated(SPEraserContext *dc)
selection->set(item);
selection->add(dup);
- sp_selected_path_diff();
+ sp_selected_path_diff_skip_undo();
if ( !selection->isEmpty() ) {
// If the item was not completely erased, add it back to the selection.
GSList const *selected2 = g_slist_copy(const_cast<GSList *>(selection->itemList()));
diff --git a/src/splivarot.cpp b/src/splivarot.cpp
index b2da4e9f6..01331d2f8 100644
--- a/src/splivarot.cpp
+++ b/src/splivarot.cpp
@@ -90,6 +90,12 @@ sp_selected_path_diff()
}
void
+sp_selected_path_diff_skip_undo()
+{
+ sp_selected_path_boolop(bool_op_diff, SP_VERB_NONE, _("Difference"));
+}
+
+void
sp_selected_path_symdiff()
{
sp_selected_path_boolop(bool_op_symdiff, SP_VERB_SELECTION_SYMDIFF, _("Exclusion"));
diff --git a/src/splivarot.h b/src/splivarot.h
index 61b5ee143..2ac47135a 100644
--- a/src/splivarot.h
+++ b/src/splivarot.h
@@ -16,6 +16,7 @@ void sp_selected_path_union ();
void sp_selected_path_union_skip_undo ();
void sp_selected_path_intersect ();
void sp_selected_path_diff ();
+void sp_selected_path_diff_skip_undo ();
void sp_selected_path_symdiff ();
void sp_selected_path_cut ();
void sp_selected_path_slice ();