summaryrefslogtreecommitdiff
path: root/src/wx/video_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-11 20:30:18 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-11 20:30:18 +0200
commit6157596fabb32c0f915525e4d05130652c1cd751 (patch)
tree52026109ef8226ae8132f1e3f1978451ce2319ee /src/wx/video_panel.cc
parent6bbf7dee3e8ebfad87035aa032e71e06f7a4acb8 (diff)
Fix failure to update scale fit/custom radio buttons.
Diffstat (limited to 'src/wx/video_panel.cc')
-rw-r--r--src/wx/video_panel.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc
index 1c2e94d4c..75612a0ce 100644
--- a/src/wx/video_panel.cc
+++ b/src/wx/video_panel.cc
@@ -381,9 +381,7 @@ VideoPanel::film_content_changed(int property)
if (property == ContentProperty::VIDEO_FRAME_RATE ||
property == VideoContentProperty::FRAME_TYPE ||
- property == VideoContentProperty::CROP ||
- property == VideoContentProperty::CUSTOM_RATIO ||
- property == VideoContentProperty::CUSTOM_SIZE) {
+ property == VideoContentProperty::CROP) {
setup_description();
} else if (property == VideoContentProperty::COLOUR_CONVERSION) {
boost::unordered_set<optional<ColourConversion>> check;
@@ -472,6 +470,7 @@ VideoPanel::film_content_changed(int property)
checked_set(_scale_custom, false);
}
setup_sensitivity();
+ setup_description();
} else if (
property == DCPContentProperty::REFERENCE_VIDEO ||
property == DCPContentProperty::REFERENCE_AUDIO ||