diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-09-21 14:39:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-09-21 14:39:42 +0100 |
| commit | 2169abd0f6d569492122ad699253ab7c792f4969 (patch) | |
| tree | 0596a808dada6fdfb9ff9e50ab7054a509455867 /src/wx | |
| parent | ea491ba4ea7d5c4c575ae8b3d0415d78bbf32af6 (diff) | |
Disallow referencing DCPs of different frame rates to the project.
Fix reel calculations of DCPContent under trim.
Diffstat (limited to 'src/wx')
| -rw-r--r-- | src/wx/video_panel.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index a1457ac6d..177799208 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -252,8 +252,11 @@ void VideoPanel::film_changed (Film::Property property) { switch (property) { - case Film::CONTAINER: case Film::VIDEO_FRAME_RATE: + setup_description (); + setup_sensitivity (); + break; + case Film::CONTAINER: case Film::RESOLUTION: setup_description (); break; |
