summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-08-13 23:13:59 +0200
committerCarl Hetherington <cth@carlh.net>2025-08-13 23:13:59 +0200
commitd889a9755d3f0a6d1ec54896f976578672df1d9b (patch)
treedefaa3804d8552e83f29fc6d35de79a92ad92ad9
parenta172e67b9684100e063254f4cd0301155ec16edc (diff)
Rename None -> DCI X'Y'Z' in menu.
Also suggested in #3066, it made no sense to say the source colourspace was "None" (a confusion between 'source colourspace' and 'what conversion should be applied').
-rw-r--r--src/wx/video_panel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc
index 477fe6d61..fc2ef882f 100644
--- a/src/wx/video_panel.cc
+++ b/src/wx/video_panel.cc
@@ -184,7 +184,7 @@ VideoPanel::create()
_colour_conversion_label = create_label(this, _("Source\ncolourspace"), true);
_colour_conversion = new wxChoice(this, wxID_ANY, wxDefaultPosition, size);
- _colour_conversion->Append(_("None"));
+ _colour_conversion->Append(_("DCI X'Y'Z'"));
for (auto const& i: PresetColourConversion::all()) {
_colour_conversion->Append(std_to_wx(i.name));
}
@@ -393,7 +393,7 @@ VideoPanel::film_content_changed(int property)
}
/* Remove any "Many" entry that we might have added previously. There should
- * be entries for each preset plus one for "None" and one for "Custom".
+ * be entries for each preset plus one for "DCI X'Y'Z'" and one for "Custom".
*/
auto cc = PresetColourConversion::all();
if (_colour_conversion->GetCount() > cc.size() + 2) {