pot/merge.
[dcpomatic.git] / src / wx / colour_conversion_editor.cc
index 8b0dbabfef83c6f67dc491669e9fc0e86adb3614..3a1ffe0bf13df73233e1f8cb3edad4c805bfb10b 100644 (file)
@@ -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;
@@ -200,6 +200,8 @@ ColourConversionEditor::ColourConversionEditor (wxWindow* parent, bool yuv)
 
        /* Output transfer function */
 
+       subhead (table, this, _("Output gamma correction"), r);
+
        _output = new wxCheckBox (this, wxID_ANY, _("Inverse 2.6 gamma correction on output"));
        table->Add (_output, wxGBPosition (r, 0), wxGBSpan (1, 2));