From 6387165d6713c73c015a3bc9cc2d6016af61b604 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 8 May 2025 23:40:55 +0200 Subject: Fix missing update of controls when changing VF settings. --- src/wx/video_panel.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index dd805bc24..1c2e94d4c 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -472,6 +472,12 @@ VideoPanel::film_content_changed(int property) checked_set(_scale_custom, false); } setup_sensitivity(); + } else if ( + property == DCPContentProperty::REFERENCE_VIDEO || + property == DCPContentProperty::REFERENCE_AUDIO || + property == DCPContentProperty::REFERENCE_TEXT + ) { + setup_sensitivity(); } } -- cgit v1.2.3