diff options
Diffstat (limited to 'src/wx/content_panel.cc')
| -rw-r--r-- | src/wx/content_panel.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 8ca0d5b29..a84698032 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -526,11 +526,6 @@ ContentPanel::add_files (list<boost::filesystem::path> paths) /* XXX: check for lots of files here and do something */ for (list<boost::filesystem::path>::const_iterator i = paths.begin(); i != paths.end(); ++i) { - shared_ptr<Content> c = content_factory (_film, *i); - shared_ptr<ImageContent> ic = dynamic_pointer_cast<ImageContent> (c); - if (ic) { - ic->set_video_frame_rate (24); - } - _film->examine_and_add_content (c); + _film->examine_and_add_content (content_factory (_film, *i)); } } |
