summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/verbs.cpp5
-rw-r--r--src/verbs.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index a700a3ad2..9cfe33dda 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1620,6 +1620,9 @@ DialogVerb::perform(SPAction *action, void *data, void *pdata)
case SP_VERB_DIALOG_INPUT:
sp_input_dialog();
break;
+ case SP_VERB_DIALOG_EXTENSIONEDITOR:
+ dt->_dlg_mgr->showDialog("ExtensionEditor");
+ break;
default:
break;
}
@@ -2231,6 +2234,8 @@ Verb *Verb::_base_verbs[] = {
#endif
new DialogVerb(SP_VERB_DIALOG_INPUT, "DialogInput", N_("_Input Devices..."),
N_("Configure extended input devices, such as a graphics tablet"), NULL),
+ new DialogVerb(SP_VERB_DIALOG_EXTENSIONEDITOR, "org.inkscape.dialogs.extensioneditor", N_("_Extensions..."),
+ N_("Query information about extensions"), NULL),
/* Help */
new HelpVerb(SP_VERB_HELP_KEYS, "HelpKeys", N_("_Keys and Mouse"),
diff --git a/src/verbs.h b/src/verbs.h
index 2b4c952e9..521fdabaf 100644
--- a/src/verbs.h
+++ b/src/verbs.h
@@ -206,6 +206,7 @@ enum {
SP_VERB_DIALOG_WHITEBOARD_DISCONNECT_FROM_SERVER,
#endif
SP_VERB_DIALOG_INPUT,
+ SP_VERB_DIALOG_EXTENSIONEDITOR,
/* Help */
SP_VERB_HELP_KEYS,
SP_VERB_HELP_ABOUT_EXTENSIONS,