summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-04 02:23:52 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-04 02:23:52 +0000
commitd627dc64423f864c9320c73a52b47836c696bceb (patch)
tree6dd2947cf2adc65ae0afb361e081a1fd0ae31928 /src/verbs.cpp
parentFixed path color when changed by Objects Dialog (diff)
parentRemove dom/* code and replace two uses of dom/uri with uri. (diff)
downloadinkscape-d627dc64423f864c9320c73a52b47836c696bceb.tar.gz
inkscape-d627dc64423f864c9320c73a52b47836c696bceb.zip
Merge to trunk
(bzr r13090.1.12)
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 b5c5abe13..9c0908e93 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2043,6 +2043,9 @@ void DialogVerb::perform(SPAction *action, void *data)
case SP_VERB_DIALOG_OBJECTS:
dt->_dlg_mgr->showDialog("ObjectsPanel");
break;
+ case SP_VERB_DIALOG_TAGS:
+ dt->_dlg_mgr->showDialog("TagsPanel");
+ break;
case SP_VERB_DIALOG_LIVE_PATH_EFFECT:
dt->_dlg_mgr->showDialog("LivePathEffect");
break;
@@ -2863,6 +2866,8 @@ Verb *Verb::_base_verbs[] = {
N_("View Layers"), INKSCAPE_ICON("dialog-layers")),
new DialogVerb(SP_VERB_DIALOG_OBJECTS, "DialogObjects", N_("Object_s..."),
N_("View Objects"), INKSCAPE_ICON("dialog-layers")),
+ new DialogVerb(SP_VERB_DIALOG_TAGS, "DialogObjects", N_("Ta_gs..."),
+ N_("View Tags"), INKSCAPE_ICON("edit-select-all-layers")),
new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path E_ffects ..."),
N_("Manage, edit, and apply path effects"), NULL),
new DialogVerb(SP_VERB_DIALOG_FILTER_EFFECTS, "DialogFilterEffects", N_("Filter _Editor..."),