diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-11-15 13:44:10 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-11-15 13:44:10 +0000 |
| commit | 3e0d0000886dc0c4aa7f9f8c9168dbdbbb99a40a (patch) | |
| tree | ad3ba7ec15728bb6253b8db1c8f8f38ea017b8d1 /src | |
| parent | 417136d2141af3fa30411c327b4c2479dbde6e39 (diff) | |
Use 2 decimal places for gamma controls instead of 1.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/colour_conversion_editor.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/colour_conversion_editor.cc b/src/wx/colour_conversion_editor.cc index 823f5ad38..a4ec23411 100644 --- a/src/wx/colour_conversion_editor.cc +++ b/src/wx/colour_conversion_editor.cc @@ -86,11 +86,11 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent) table->Add (output_sizer, wxGBPosition (r, 1)); ++r; - _input_gamma->SetRange(0.1, 4.0); - _input_gamma->SetDigits (1); + _input_gamma->SetRange (0.1, 4.0); + _input_gamma->SetDigits (2); _input_gamma->SetIncrement (0.1); - _output_gamma->SetRange(0.1, 4.0); - _output_gamma->SetDigits (1); + _output_gamma->SetRange (0.1, 4.0); + _output_gamma->SetDigits (2); _output_gamma->SetIncrement (0.1); _input_gamma->Bind (wxEVT_COMMAND_SPINCTRLDOUBLE_UPDATED, boost::bind (&ColourConversionEditor::changed, this)); |
