From deb601f8f46e34922f8cfbe2be5bc4d84d3784e8 Mon Sep 17 00:00:00 2001 From: Hombre Date: Wed, 8 Jun 2011 01:48:44 +0200 Subject: [PATCH] Solving issue #705 : Exposure slider does not behave the same between RT3.0 and Dev-3.1... This patch only extend the Liear RAW Linear correction up to 16. --- rtgui/rawexposure.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/rawexposure.cc b/rtgui/rawexposure.cc index 6a4d827f0..d56ddc499 100644 --- a/rtgui/rawexposure.cc +++ b/rtgui/rawexposure.cc @@ -26,7 +26,7 @@ using namespace rtengine::procparams; RAWExposure::RAWExposure () : Gtk::VBox(), FoldableToolPanel(this) { - PexPos = Gtk::manage(new Adjuster (M("TP_RAWEXPOS_LINEAR"),0.2,5.0,0.01,1)); + PexPos = Gtk::manage(new Adjuster (M("TP_RAWEXPOS_LINEAR"),0.2,16.0,0.01,1)); PexPos->setAdjusterListener (this); if (PexPos->delay < 1000) PexPos->delay = 1000; PexPos->show();