Recallable Custom WB (see issue 928)

stores CustomWB settings in variables (on adjuster change, wb picker and read) and recall from them when Custom method is selected
This commit is contained in:
michael
2011-08-21 14:29:07 -04:00
parent c57bc0c15f
commit 26b23c453c
2 changed files with 29 additions and 0 deletions

View File

@@ -44,6 +44,9 @@ class WhiteBalance : public Gtk::VBox, public AdjusterListener, public FoldableT
WBProvider *wbp;
SpotWBListener* wblistener;
sigc::connection methconn;
int custom_temp;
double custom_green;
void cache_customWB(int temp, double green){custom_temp = temp; custom_green=green;}; //cache custom WB setting to allow its recall
public: