From 8c8df83a5adf58eab86fffd343df8cd4c75c6d02 Mon Sep 17 00:00:00 2001 From: Desmis Date: Wed, 18 Sep 2019 11:11:02 +0200 Subject: [PATCH] Change default setting luminance detail DCT --- rtengine/procparams.cc | 2 +- rtgui/locallab.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtengine/procparams.cc b/rtengine/procparams.cc index fda80241e..591e9cc90 100644 --- a/rtengine/procparams.cc +++ b/rtengine/procparams.cc @@ -2652,7 +2652,7 @@ LocallabParams::LocallabSpot::LocallabSpot() : noiselumf0(0), noiselumf2(0), noiselumc(0), - noiselumdetail(0), + noiselumdetail(80), noiselequal(7), noisechrof(0), noisechroc(0), diff --git a/rtgui/locallab.cc b/rtgui/locallab.cc index 001fb7ea4..9e5772b01 100644 --- a/rtgui/locallab.cc +++ b/rtgui/locallab.cc @@ -321,7 +321,7 @@ Locallab::Locallab(): noiselumf0(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISELUMFINEZERO"), MINCHRO, MAXCHRO, 1, 0))), noiselumf2(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISELUMFINETWO"), MINCHRO, MAXCHRO, 1, 0))), noiselumc(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISELUMCOARSE"), MINCHRO, MAXCHROCC, 1, 0))), - noiselumdetail(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISELUMDETAIL"), 0, 100, 1, 0))), + noiselumdetail(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISELUMDETAIL"), 0, 100, 1, 80))), noiselequal(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISELEQUAL"), -2, 10, 1, 7, Gtk::manage(new RTImage("circle-white-small.png")), Gtk::manage(new RTImage("circle-black-small.png"))))), noisechrof(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISECHROFINE"), MINCHRO, MAXCHRO, 1, 0))), noisechroc(Gtk::manage(new Adjuster(M("TP_LOCALLAB_NOISECHROCOARSE"), MINCHRO, MAXCHROCC, 1, 0))),