X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fverbs.cpp;h=a046372fc0a7fac513d4384daff24d5e6b1b500f;hb=d88d2aa6894cc84f414fbdb64899673c66bc52c1;hp=66792ae410a1b8f5babd2e1947d184188ad9196b;hpb=6d26f0c3415176c2f2a85da0426cad95f46ca3cc;p=inkscape.git diff --git a/src/verbs.cpp b/src/verbs.cpp index 66792ae41..a046372fc 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -45,6 +45,7 @@ #include "dialogs/iconpreview.h" #include "dialogs/extensions.h" #include "dialogs/swatches.h" +#include "dialogs/layers-panel.h" #include "dialogs/input.h" #ifdef WITH_INKBOARD @@ -1624,6 +1625,9 @@ DialogVerb::perform(SPAction *action, void *data, void *pdata) case SP_VERB_DIALOG_EXTENSIONEDITOR: dt->_dlg_mgr->showDialog("ExtensionEditor"); break; + case SP_VERB_DIALOG_LAYERS: + show_panel( Inkscape::UI::Dialogs::LayersPanel::getInstance(), "dialogs.layers", SP_VERB_DIALOG_LAYERS ); + break; default: break; } @@ -2310,6 +2314,8 @@ Verb *Verb::_base_verbs[] = { 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), + new DialogVerb(SP_VERB_DIALOG_LAYERS, "DialogLayers", N_("_Layers..."), + N_("View Layers"), NULL), /* Help */ new HelpVerb(SP_VERB_HELP_KEYS, "HelpKeys", N_("_Keys and Mouse"), @@ -2355,7 +2361,7 @@ Verb *Verb::_base_verbs[] = { N_("Fit the canvas to the current selection or the drawing if there is no selection"), NULL), /* Footer */ - new Verb(SP_VERB_LAST, NULL, NULL, NULL, NULL) + new Verb(SP_VERB_LAST, " '\"invalid id", NULL, NULL, NULL) };