summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-01-09 23:22:22 +0100
committerCarl Hetherington <cth@carlh.net>2020-01-09 23:22:22 +0100
commite8582393bd1367fff36bae8e053d799073d8b2ed (patch)
tree8d1c7bc640c29827cf9610db814bd6b96947b523
parent25b2689011bca3d71c246ba0169132439d670bbc (diff)
Update text panel 'why not' note when film's standard is changed.
-rw-r--r--src/wx/text_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc
index 95a499dfd..2121ba388 100644
--- a/src/wx/text_panel.cc
+++ b/src/wx/text_panel.cc
@@ -305,7 +305,7 @@ TextPanel::dcp_track_changed ()
void
TextPanel::film_changed (Film::Property property)
{
- if (property == Film::CONTENT || property == Film::REEL_TYPE) {
+ if (property == Film::CONTENT || property == Film::REEL_TYPE || property == Film::INTEROP) {
setup_sensitivity ();
}
}