diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-12-03 10:12:35 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-12-03 10:12:35 +0000 |
| commit | c008066160d85b9ec9e5485375d7baaa5d27bda2 (patch) | |
| tree | cf2876d69549119bf22761c5f6eccb568242b647 /src/wx/content_menu.cc | |
| parent | 996fa2194581bf95113b9778849654893c414889 (diff) | |
Hand-apply 6a3cd511559433554ab40ed72ff94b7d8dc2c5bd from master;
Basics of an image sequence dialog that asks about frame rate and
digest calculation.
Diffstat (limited to 'src/wx/content_menu.cc')
| -rw-r--r-- | src/wx/content_menu.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/content_menu.cc b/src/wx/content_menu.cc index 3e3c462b2..c528447ac 100644 --- a/src/wx/content_menu.cc +++ b/src/wx/content_menu.cc @@ -207,7 +207,7 @@ ContentMenu::find_missing () return; } - shared_ptr<Job> j (new ExamineContentJob (film, content)); + shared_ptr<Job> j (new ExamineContentJob (film, content, true)); j->Finished.connect ( bind ( @@ -231,7 +231,7 @@ ContentMenu::re_examine () } for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) { - film->examine_content (*i); + film->examine_content (*i, true); } } @@ -269,7 +269,7 @@ ContentMenu::kdm () dcp->add_kdm (dcp::EncryptedKDM (dcp::file_to_string (wx_to_std (d->GetPath ())))); shared_ptr<Film> film = _film.lock (); assert (film); - film->examine_content (dcp); + film->examine_content (dcp, true); } d->Destroy (); |
