summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-21 22:36:24 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-21 22:36:24 +0100
commitf968fb875135884b0551195edc2315d4be76d5bc (patch)
treea7a7c0f4a68a86b41e14206d6b2839011fddc4bb /src/tools
parent3734060fc1c7db2d1bdb44ff59eece4d1df6cad6 (diff)
Check content for changes on loading a project.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 7ae6b1c72..0af65bd26 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -71,6 +71,7 @@
#include "lib/transcode_job.h"
#include "lib/dkdm_wrapper.h"
#include "lib/audio_content.h"
+#include "lib/check_content_change_job.h"
#include "lib/text_content.h"
#include <dcp/exceptions.h>
#include <dcp/raw_convert.h>
@@ -414,6 +415,8 @@ public:
}
set_film (film);
+
+ JobManager::instance()->add(shared_ptr<Job>(new CheckContentChangeJob(film)));
}
catch (std::exception& e) {
wxString p = std_to_wx (file.string ());