Microcontrast: move contrast threshold adjuster to top of tool

This commit is contained in:
heckflosse
2018-05-27 15:19:47 +02:00
parent 6189a41435
commit 6b8633d3d1
2 changed files with 6 additions and 25 deletions

View File

@@ -33,10 +33,6 @@ Sharpening::Sharpening () : FoldableToolPanel(this, "sharpening", M("TP_SHARPENI
contrast = Gtk::manage(new Adjuster (M("TP_SHARPENING_CONTRAST"), 0, 200, 1, 0));
contrast->setAdjusterListener (this);
pack_start(*contrast);
if (contrast->delay < options.adjusterMaxDelay) {
contrast->delay = options.adjusterMaxDelay;
}
contrast->show();
Gtk::Label* ml = Gtk::manage (new Gtk::Label (M("TP_SHARPENING_METHOD") + ":"));