From d4f0aa559668e42826dfeacff83194dfb3e00408 Mon Sep 17 00:00:00 2001 From: Morgan Hardwood Date: Mon, 27 Mar 2017 20:42:04 +0200 Subject: [PATCH] Set EPD tone mapping Scale to 0.1 to better match preview to output. --- rtgui/epd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/epd.cc b/rtgui/epd.cc index 15f15f607..995da43a4 100644 --- a/rtgui/epd.cc +++ b/rtgui/epd.cc @@ -31,7 +31,7 @@ EdgePreservingDecompositionUI::EdgePreservingDecompositionUI () : FoldableToolPa strength = Gtk::manage(new Adjuster (M("TP_EPD_STRENGTH"), -1.0, 2.0, 0.01, 0.5)); gamma = Gtk::manage(new Adjuster (M("TP_EPD_GAMMA"), 0.8, 1.5, 0.01, 1.)); edgeStopping = Gtk::manage(new Adjuster (M("TP_EPD_EDGESTOPPING"), 0.1, 4.0, 0.01, 1.4)); - scale = Gtk::manage(new Adjuster (M("TP_EPD_SCALE"), 0.1, 10.0, 0.01, 0.3)); + scale = Gtk::manage(new Adjuster (M("TP_EPD_SCALE"), 0.1, 10.0, 0.01, 0.1)); reweightingIterates = Gtk::manage(new Adjuster (M("TP_EPD_REWEIGHTINGITERATES"), 0, 9, 1, 0)); strength->setAdjusterListener(this);