diff options
| author | kamalpreetgrewal <grewalkamal005@gmail.com> | 2016-07-17 18:44:29 +0000 |
|---|---|---|
| committer | kamalpreetgrewal <grewalkamal005@gmail.com> | 2016-07-17 18:44:29 +0000 |
| commit | e0396836d3738f9b6d2182f310795fc6fe9d8857 (patch) | |
| tree | 5d621b9b5a35cbffb2a14b64708ef713a46199ca /src/verbs.cpp | |
| parent | Merge changes from trunk (diff) | |
| download | inkscape-e0396836d3738f9b6d2182f310795fc6fe9d8857.tar.gz inkscape-e0396836d3738f9b6d2182f310795fc6fe9d8857.zip | |
Add CSS panel with editing support (no changes reflected yet)
(bzr r14949.1.52)
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp index 2908ae580..d4c9c8945 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -2122,6 +2122,9 @@ void DialogVerb::perform(SPAction *action, void *data) case SP_VERB_DIALOG_STYLE: dt->_dlg_mgr->showDialog("StyleDialog"); break; + case SP_VERB_DIALOG_CSS: + dt->_dlg_mgr->showDialog("CssDialog"); + break; default: break; @@ -2954,6 +2957,8 @@ Verb *Verb::_base_verbs[] = { N_("View Tags"), INKSCAPE_ICON("edit-select-all-layers")), new DialogVerb(SP_VERB_DIALOG_STYLE, "DialogStyle", N_("Style Dialog..."), N_("View Style Dialog"), NULL), + new DialogVerb(SP_VERB_DIALOG_CSS, "DialogCss", N_("Css Dialog..."), + N_("View Css Dialog"), NULL), new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path E_ffects ..."), N_("Manage, edit, and apply path effects"), INKSCAPE_ICON("dialog-path-effects")), new DialogVerb(SP_VERB_DIALOG_FILTER_EFFECTS, "DialogFilterEffects", N_("Filter _Editor..."), |
