Fix missing update of controls when changing VF settings.
authorCarl Hetherington <cth@carlh.net>
Thu, 8 May 2025 21:40:55 +0000 (23:40 +0200)
committerCarl Hetherington <cth@carlh.net>
Thu, 8 May 2025 21:40:55 +0000 (23:40 +0200)
src/wx/video_panel.cc

index dd805bc247184e224664833b1f35cebdc2d669a6..1c2e94d4c3b0486d6db1cb29a9556c16df382c16 100644 (file)
@@ -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();
        }
 }