diff options
| author | Jon A. Cruz <jon@joncruz.org> | 2007-10-04 06:44:35 +0000 |
|---|---|---|
| committer | joncruz <joncruz@users.sourceforge.net> | 2007-10-04 06:44:35 +0000 |
| commit | e9082cee5f58d4e5aeba831ab57f30be821b376f (patch) | |
| tree | 8303e5acdd6eb9e359b7b56539e47030da2eb412 /src | |
| parent | few more CMS options (diff) | |
| download | inkscape-e9082cee5f58d4e5aeba831ab57f30be821b376f.tar.gz inkscape-e9082cee5f58d4e5aeba831ab57f30be821b376f.zip | |
tune-up for lcms disabled
(bzr r3834)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index a747e0045..9a3125381 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -664,6 +664,11 @@ void InkscapePreferences::initPageCMS() Glib::ustring intentLabels[numIntents] = {_("Perceptual"), _("Relative Colorimetric"), _("Saturation"), _("Absolute Colorimetric")}; int intentValues[numIntents] = {0, 1, 2, 3}; +#if !ENABLE_LCMS + Gtk::Label* lbl = new Gtk::Label(_("(Note: Color Management has been disabled in this build)")); + _page_cms.add_line( false, "", *lbl, "", "", true); +#endif // !ENABLE_LCMS + _page_cms.add_group_header( _("Disply Calibration")); _cms_display.init( _("Enable display calibration"), "options.displayprofile", "enable", false); @@ -759,7 +764,7 @@ void InkscapePreferences::initPageCMS() _cms_proof_intent.set_sensitive( false ); _cms_proof_profile.set_sensitive( false ); _cms_proof_blackpoint.set_sensitive( false ); - _cms_proof_preserveblack_sensitive( false ); + _cms_proof_preserveblack.set_sensitive( false ); #endif // ENABLE_LCMS this->AddPage(_page_cms, _("Color Management"), PREFS_PAGE_CMS); |
