From 5d969eaeb7a74c5ddd30626a6064c927e1bdb102 Mon Sep 17 00:00:00 2001 From: Desmis Date: Fri, 3 May 2019 15:33:19 +0200 Subject: [PATCH] change edge stopping defualt value --- rtdata/languages/default | 3 ++- rtengine/procparams.cc | 2 +- rtgui/locallab.cc | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/rtdata/languages/default b/rtdata/languages/default index 4f1a13eb0..b7d345935 100644 --- a/rtdata/languages/default +++ b/rtdata/languages/default @@ -2123,7 +2123,8 @@ TP_LOCALLAB_TRANSITGRAD;Transition differentiation XY TP_LOCALLAB_TRANSITGRAD_TOOLTIP;Changes the transition of the abscissa to that of the ordinate TP_LOCALLAB_TRANSITWEAK;Transition weakening TP_LOCALLAB_TRANSITWEAK_TOOLTIP;Adjust weakening : change smoothness process - 1 linear - 2 parabolic - 3 cubic -TP_LOCALLAB_TONEMAP_TOOLTIP;Tone Mapping - main menu must be disabled +TP_LOCALLAB_TONEMAP_TOOLTIP;Tone Mapping - main menu must be disabled +TP_LOCALLAB_TONEMAPESTOP_TOOLTIP;Increase Edge stopping, increase processing time - but increases the effects TP_LOCALLAB_VIBRANCE;Vibrance TP_LOCALLAB_WARM;Warm - Cool & Color artifacts TP_LOCALLAB_WARM_TOOLTIP;This slider use Ciecam algorithm and acts as White Balance, it can warm or cool the area selected.\nIt can also in some cases reduce color artifacts. diff --git a/rtengine/procparams.cc b/rtengine/procparams.cc index 71d13a07d..25ecc4d0d 100644 --- a/rtengine/procparams.cc +++ b/rtengine/procparams.cc @@ -2459,7 +2459,7 @@ LocallabParams::LocallabSpot::LocallabSpot() : exptonemap(false), stren(10), gamma(100), - estop(140), + estop(80), scaltm(10), rewei(0), satur(5), diff --git a/rtgui/locallab.cc b/rtgui/locallab.cc index 5756a3deb..9fba1e5b9 100644 --- a/rtgui/locallab.cc +++ b/rtgui/locallab.cc @@ -139,7 +139,7 @@ Locallab::Locallab(): // Tone Mapping stren(Gtk::manage(new Adjuster(M("TP_LOCALLAB_STREN"), -50, 200, 1, 10))), gamma(Gtk::manage(new Adjuster(M("TP_LOCALLAB_GAM"), 40, 400, 1, 100))), - estop(Gtk::manage(new Adjuster(M("TP_LOCALLAB_ESTOP"), 10, 400, 1, 140))), + estop(Gtk::manage(new Adjuster(M("TP_LOCALLAB_ESTOP"), 10, 400, 1, 80))), scaltm(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SCALTM"), 1, 100, 1, 10))), rewei(Gtk::manage(new Adjuster(M("TP_LOCALLAB_REWEI"), 0, 9, 1, 0))), sensitm(Gtk::manage(new Adjuster(M("TP_LOCALLAB_SENSI"), 0, 100, 1, 15))), @@ -785,6 +785,7 @@ Locallab::Locallab(): if(showtooltip) sensitm->set_tooltip_text(M("TP_LOCALLAB_SENSI_TOOLTIP")); sensitm->setAdjusterListener(this); softradiustm->setAdjusterListener(this); + if(showtooltip) estop->set_tooltip_text(M("TP_LOCALLAB_TONEMAPESTOP_TOOLTIP")); ToolParamBlock* const tmBox = Gtk::manage(new ToolParamBlock()); tmBox->pack_start(*amount);