From bc3c4fab972078ef8ef4088006005eb3f7008d11 Mon Sep 17 00:00:00 2001 From: Desmis Date: Mon, 19 Oct 2020 07:11:06 +0200 Subject: [PATCH] GUI local adjustments - Change the location of double slider wavelet level --- rtgui/locallabtools2.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rtgui/locallabtools2.cc b/rtgui/locallabtools2.cc index a0619eafd..38f5a756d 100644 --- a/rtgui/locallabtools2.cc +++ b/rtgui/locallabtools2.cc @@ -2456,10 +2456,11 @@ LocallabContrast::LocallabContrast(): pack_start(*lcamount); pack_start(*lcdarkness); pack_start(*lclightness); + pack_start(*csThreshold); ToolParamBlock* const coBox = Gtk::manage(new ToolParamBlock()); coBox->pack_start(*sigmalc); coBox->pack_start(*LocalcurveEditorwav, Gtk::PACK_SHRINK, 4); // Padding is mandatory to correct behavior of curve editor - coBox->pack_start(*csThreshold); + // coBox->pack_start(*csThreshold); contFrame->add(*coBox); pack_start(*contFrame); // pack_start(*levelwav); @@ -3912,6 +3913,7 @@ void LocallabContrast::updateContrastGUI1() lcdarkness->show(); lclightness->show(); contFrame->hide(); + csThreshold->hide(); levelwav->hide(); expresidpyr->hide(); clariFrame->hide(); @@ -3927,6 +3929,7 @@ void LocallabContrast::updateContrastGUI1() lcdarkness->hide(); lclightness->hide(); contFrame->show(); + csThreshold->show(); levelwav->show(); expresidpyr->show(); clariFrame->show();