Changed defaults on highlight rolloff slider. Now people can stop complaining that they can't increase it :roll:

This commit is contained in:
Emil Martinec 2010-10-24 12:13:33 -05:00
parent cd87bc9bf0
commit ca09a35ed7
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ void ProcParams::setDefaults () {
toneCurve.brightness = 0;
toneCurve.contrast = 0;
toneCurve.black = 0;
toneCurve.hlcompr = 85;
toneCurve.hlcompr = 70;
toneCurve.shcompr = 85;
toneCurve.curve.clear ();

View File

@ -51,7 +51,7 @@ ToneCurve::ToneCurve () : ToolPanel(), expAdd(false), blackAdd(false), brAdd(fal
//----------- Exposure Compensation ------------------------
expcomp = Gtk::manage (new Adjuster (M("TP_EXPOSURE_EXPCOMP"), -5, 5, 0.01, 0));
pack_start (*expcomp);
hlcompr = Gtk::manage (new Adjuster (M("TP_EXPOSURE_COMPRHIGHLIGHTS"), 0, 100, 1, 100));
hlcompr = Gtk::manage (new Adjuster (M("TP_EXPOSURE_COMPRHIGHLIGHTS"), 0, 100, 1, 70));
pack_start (*hlcompr);
//----------- Black Level ----------------------------------