summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-05-08 23:40:55 +0200
committerCarl Hetherington <cth@carlh.net>2025-05-08 23:40:55 +0200
commit6387165d6713c73c015a3bc9cc2d6016af61b604 (patch)
tree8d2a329ac0c02e0fc09afa516aed5aba3bd80d51
parent934701b2d73de44400fb8782a1aea2c1181fde2e (diff)
Fix missing update of controls when changing VF settings.
-rw-r--r--src/wx/video_panel.cc6
1 files changed, 6 insertions, 0 deletions
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();
}
}