diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-11-26 20:54:55 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-11-26 20:54:55 +0000 |
| commit | c3585e5f5ab297489509d60b69749dcddb89b446 (patch) | |
| tree | 2e2b514da9d5588c76eb897349d63bdae30c1138 /src/verbs.cpp | |
| parent | Don't snap the smooth nodes of a path (diff) | |
| download | inkscape-c3585e5f5ab297489509d60b69749dcddb89b446.tar.gz inkscape-c3585e5f5ab297489509d60b69749dcddb89b446.zip | |
Menu item to toggle CMS adjustment on and off
(bzr r4138)
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp index a1947fb97..ea4ffd71b 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -1630,6 +1630,9 @@ ZoomVerb::perform(SPAction *action, void *data, void */*pdata*/) case SP_VERB_VIEW_MODE_TOGGLE: dt->displayModeToggle(); break; + case SP_VERB_VIEW_CMS_TOGGLE: + dt->toggleColorProfAdjust(); + break; case SP_VERB_VIEW_ICON_PREVIEW: inkscape_dialogs_unhide(); dt->_dlg_mgr->showDialog("IconPreviewPanel"); @@ -2458,6 +2461,9 @@ Verb *Verb::_base_verbs[] = { new ZoomVerb(SP_VERB_VIEW_MODE_TOGGLE, "ViewModeToggle", N_("_Toggle"), N_("Toggle between normal and outline display modes"), NULL), + new ZoomVerb(SP_VERB_VIEW_CMS_TOGGLE, "ViewCmsToggle", N_("Display Adjustment"), + N_("Toggle CMS display adjustment on and off"), "swatches"), + new ZoomVerb(SP_VERB_VIEW_ICON_PREVIEW, "ViewIconPreview", N_("Ico_n Preview..."), N_("Open a window to preview objects at different icon resolutions"), "view_icon_preview"), new ZoomVerb(SP_VERB_ZOOM_PAGE, "ZoomPage", N_("_Page"), |
