summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-02-15 00:11:16 +0000
committerCarl Hetherington <cth@carlh.net>2017-02-15 00:11:16 +0000
commitcdea0af84e683636454a19a513ed399d0c5bdd34 (patch)
treeca8f9d37a7dfc3f003c8e63c85ceb78221523a5e /src
parent454e7ed5f43c0b008517627ed90d3e7155da6595 (diff)
Tweak to labelling.
Diffstat (limited to 'src')
-rw-r--r--src/wx/colour_conversion_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/colour_conversion_editor.cc b/src/wx/colour_conversion_editor.cc
index 00ab45fdf..3a1ffe0bf 100644
--- a/src/wx/colour_conversion_editor.cc
+++ b/src/wx/colour_conversion_editor.cc
@@ -57,8 +57,8 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv)
add_label_to_sizer (table, this, _("Input transfer function"), true, wxGBPosition (r, 0));
_input = new wxChoice (this, wxID_ANY);
- _input->Append (_("Gamma"));
- _input->Append (_("Gamma, linearised for small values"));
+ _input->Append (_("Simple gamma"));
+ _input->Append (_("Simple gamma, linearised for small values"));
_input->Append (_("S-Gamut3"));
table->Add (_input, wxGBPosition (r, 1), wxGBSpan (1, 2));
++r;