diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-05-11 20:30:18 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-05-11 20:30:18 +0200 |
| commit | 6157596fabb32c0f915525e4d05130652c1cd751 (patch) | |
| tree | 52026109ef8226ae8132f1e3f1978451ce2319ee | |
| parent | 6bbf7dee3e8ebfad87035aa032e71e06f7a4acb8 (diff) | |
Fix failure to update scale fit/custom radio buttons.
| -rw-r--r-- | src/wx/video_panel.cc | 5 |
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 || |
