summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2008-06-09 05:48:13 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2008-06-09 05:48:13 +0000
commit8416bcbe2cd648889478781a183742d6550de4ca (patch)
tree99a09e3043a4c97f2433f088ad2fa611d2f63b30 /src/verbs.cpp
parentadd selmodified connection to force dialog update on undo (diff)
downloadinkscape-8416bcbe2cd648889478781a183742d6550de4ca.tar.gz
inkscape-8416bcbe2cd648889478781a183742d6550de4ca.zip
remove filters verb and command
(bzr r5866)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 8ac2bec8b..509dff087 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -881,6 +881,9 @@ EditVerb::perform(SPAction *action, void *data, void */*pdata*/)
case SP_VERB_EDIT_REMOVE_LIVEPATHEFFECT:
sp_selection_remove_livepatheffect();
break;
+ case SP_VERB_EDIT_REMOVE_FILTER:
+ sp_selection_remove_filter();
+ break;
case SP_VERB_EDIT_DELETE:
sp_selection_delete();
break;
@@ -2217,6 +2220,8 @@ Verb *Verb::_base_verbs[] = {
N_("Apply the path effect of the copied object to selection"), NULL),
new EditVerb(SP_VERB_EDIT_REMOVE_LIVEPATHEFFECT, "RemoveLivePathEffect", N_("Remove Path _Effect"),
N_("Remove any path effects from selected objects"), NULL),
+ new EditVerb(SP_VERB_EDIT_REMOVE_FILTER, "RemoveFilter", N_("Remove Filter"),
+ N_("Remove any filters from selected objects"), NULL),
new EditVerb(SP_VERB_EDIT_DELETE, "EditDelete", N_("_Delete"),
N_("Delete selection"), GTK_STOCK_DELETE),
new EditVerb(SP_VERB_EDIT_DUPLICATE, "EditDuplicate", N_("Duplic_ate"),