diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-01-09 23:22:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-01-09 23:25:18 +0100 |
| commit | 75e31f6b26b2c0775c51fe83938aab7ccbb2684b (patch) | |
| tree | b4f9d8acd401ac5ad5aefca433914701fcf1d746 | |
| parent | 886e0f9d08a241bef5baf328beb08a0d6996ae14 (diff) | |
Update text panel 'why not' note when film's standard is changed.
Forward-ported from e8582393bd1367fff36bae8e053d799073d8b2ed in master.
| -rw-r--r-- | src/wx/text_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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 (); } } |
