diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-25 23:58:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-25 23:58:25 +0100 |
| commit | 67bd4a37f5836ef34d9b5752744061d4be07e6e1 (patch) | |
| tree | 58cadaf18f3b3dbea5ce4a1ae8e07ac15fee11b6 /src/wx | |
| parent | 8104c994724ef0f0c47d074e6a8a856d52dfaa7a (diff) | |
Disallow referring to subtitles / closed captions with start trim.
Since per Bv2.1 we can't have subs / closed captions with non-zero
entry point I think we have no choice but to rewrite in that case
(#1802).
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/text_panel.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc index 30c2010d0..b21d33ce5 100644 --- a/src/wx/text_panel.cc +++ b/src/wx/text_panel.cc @@ -456,6 +456,8 @@ TextPanel::film_content_changed (int property) setup_sensitivity (); } else if (property == DCPContentProperty::TEXTS) { setup_sensitivity (); + } else if (property == ContentProperty::TRIM_START) { + setup_sensitivity (); } } |
