diff options
Diffstat (limited to 'src/wx/video_panel.cc')
| -rw-r--r-- | src/wx/video_panel.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index 09fa8dbe6..47e32c5e8 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -151,6 +151,18 @@ VideoPanel::bottom_crop_changed (wxCommandEvent &) } void +VideoPanel::film_changed (Film::Property property) +{ + switch (property) { + case Film::CONTAINER: + setup_scaling_description (); + break; + default: + break; + } +} + +void VideoPanel::film_content_changed (shared_ptr<Content> c, int property) { shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (c); |
