From: Carl Hetherington Date: Thu, 9 Jan 2020 22:22:22 +0000 (+0100) Subject: Update text panel 'why not' note when film's standard is changed. X-Git-Tag: v2.15.41~3 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=75e31f6b26b2c0775c51fe83938aab7ccbb2684b Update text panel 'why not' note when film's standard is changed. Forward-ported from e8582393bd1367fff36bae8e053d799073d8b2ed in master. --- diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc index 88857b0eb..07389903c 100644 --- a/src/wx/text_panel.cc +++ b/src/wx/text_panel.cc @@ -350,7 +350,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 (); } }