From 6157596fabb32c0f915525e4d05130652c1cd751 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 11 May 2025 20:30:18 +0200 Subject: Fix failure to update scale fit/custom radio buttons. --- src/wx/video_panel.cc | 5 ++--- 1 file 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> 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 || -- cgit v1.2.3