remove the tooltip for the "OOG clipping" checkbox
This commit is contained in:
@@ -1554,7 +1554,6 @@ TP_EXPOSURE_AUTOLEVELS_TIP;Toggles execution of Auto Levels to automatically set
|
|||||||
TP_EXPOSURE_BLACKLEVEL;Black
|
TP_EXPOSURE_BLACKLEVEL;Black
|
||||||
TP_EXPOSURE_BRIGHTNESS;Lightness
|
TP_EXPOSURE_BRIGHTNESS;Lightness
|
||||||
TP_EXPOSURE_CLAMPOOG;Clip out-of-gamut colours
|
TP_EXPOSURE_CLAMPOOG;Clip out-of-gamut colours
|
||||||
TP_EXPOSURE_CLAMPOOG_TOOLTIP;Clip coulours that are outside the gamut of the current working space early in the pipeline. Turning this off allows to produce 32-bit TIFFs with values that exceed the 0-1 range, but might lead to artifacts. Under normal circumstances, this should be left enabled.
|
|
||||||
TP_EXPOSURE_CLIP;Clip %
|
TP_EXPOSURE_CLIP;Clip %
|
||||||
TP_EXPOSURE_CLIP_TIP;The fraction of pixels to be clipped in Auto Levels operation.
|
TP_EXPOSURE_CLIP_TIP;The fraction of pixels to be clipped in Auto Levels operation.
|
||||||
TP_EXPOSURE_COMPRHIGHLIGHTS;Highlight compression
|
TP_EXPOSURE_COMPRHIGHLIGHTS;Highlight compression
|
||||||
|
@@ -42,7 +42,6 @@ ToneCurve::ToneCurve () : FoldableToolPanel(this, "tonecurve", M("TP_EXPOSURE_LA
|
|||||||
|
|
||||||
//----------- OOG clamping ----------------------------------
|
//----------- OOG clamping ----------------------------------
|
||||||
clampOOG = Gtk::manage(new Gtk::CheckButton(M("TP_EXPOSURE_CLAMPOOG")));
|
clampOOG = Gtk::manage(new Gtk::CheckButton(M("TP_EXPOSURE_CLAMPOOG")));
|
||||||
clampOOG->set_tooltip_markup(M("TP_EXPOSURE_CLAMPOOG_TOOLTIP"));
|
|
||||||
pack_start(*clampOOG);
|
pack_start(*clampOOG);
|
||||||
pack_start (*Gtk::manage (new Gtk::HSeparator()));
|
pack_start (*Gtk::manage (new Gtk::HSeparator()));
|
||||||
clampOOG->signal_toggled().connect(sigc::mem_fun(*this, &ToneCurve::clampOOGChanged));
|
clampOOG->signal_toggled().connect(sigc::mem_fun(*this, &ToneCurve::clampOOGChanged));
|
||||||
|
Reference in New Issue
Block a user