Set Post-Resize Sharpening Contrast Threshold to 15, fixes #4909

This commit is contained in:
heckflosse
2018-11-01 12:12:01 +01:00
parent 86b282fc68
commit 72787cd990
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ PrSharpening::PrSharpening () : FoldableToolPanel(this, "prsharpening", M("TP_PR
Gtk::HBox* hb = Gtk::manage (new Gtk::HBox ());
hb->show ();
contrast = Gtk::manage(new Adjuster (M("TP_SHARPENING_CONTRAST"), 0, 200, 1, 0));
contrast = Gtk::manage(new Adjuster (M("TP_SHARPENING_CONTRAST"), 0, 200, 1, 15));
contrast->setAdjusterListener (this);
pack_start(*contrast);
contrast->show();