Speedup and bugfix for new Sh/Hl tool

This commit is contained in:
heckflosse
2018-04-26 14:32:43 +02:00
parent 6bea422836
commit c45ec6f16e
5 changed files with 62 additions and 34 deletions

View File

@@ -1,16 +1,18 @@
#pragma once
// This number has to be incremented whenever the PP3 file format is modified or the behaviour of a tool changes
#define PPVERSION 331
#define PPVERSION 332
#define PPVERSION_AEXP 301 //value of PPVERSION when auto exposure algorithm was modified
/*
Log of version changes
331 2018-14-02
332 2018-04-26
new Shadows/Highlights tool
331 2018-02-14
changed wavelet.Lmethod to int
330 2018-20-01
330 2018-01-20
Added 'Auto-matched Tone Curve' button, performing histogram matching
329 2017-12-09
329 2017-09-12
Added 'Enabled' flag for Channel Mixer, RGB Curves, HSV Equalizer and L*a*b* Adjustments
328 2017-11-22
Fix wrong type of ff_clipControl

View File

@@ -37,7 +37,7 @@ ShadowsHighlights::ShadowsHighlights () : FoldableToolPanel(this, "shadowshighli
pack_start (*Gtk::manage (new Gtk::HSeparator()));
radius = Gtk::manage (new Adjuster (M("TP_SHADOWSHLIGHTS_RADIUS"), 5, 100, 1, 30));
radius = Gtk::manage (new Adjuster (M("TP_SHADOWSHLIGHTS_RADIUS"), 5, 100, 1, 40));
pack_start (*radius);
radius->setAdjusterListener (this);