summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-09-21 14:39:42 +0100
committerCarl Hetherington <cth@carlh.net>2016-09-21 14:39:42 +0100
commit2169abd0f6d569492122ad699253ab7c792f4969 (patch)
tree0596a808dada6fdfb9ff9e50ab7054a509455867 /src/wx
parentea491ba4ea7d5c4c575ae8b3d0415d78bbf32af6 (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.cc5
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;