Fix font handling for DCP subtitles.
[dcpomatic.git] / src / lib / check_content_job.cc
index 2b6e25da8b1570fb9be83ae3ce1707071391db25..b74b71cc0c57522090d0d2fe17b63838249b4eb9 100644 (file)
@@ -21,6 +21,7 @@
 
 #include "check_content_job.h"
 #include "content.h"
+#include "dcp_content.h"
 #include "examine_content_job.h"
 #include "film.h"
 #include "job_manager.h"
@@ -69,21 +70,23 @@ CheckContentJob::run ()
        std::vector<shared_ptr<Content>> changed;
        std::copy_if (content.begin(), content.end(), std::back_inserter(changed), [](shared_ptr<Content> c) { return c->changed(); });
 
-       if (!changed.empty()) {
-               for (auto i: changed) {
-                       JobManager::instance()->add(make_shared<ExamineContentJob>(_film, i));
-               }
-               set_message (_("Some files have been changed since they were added to the project.\n\nThese files will now be re-examined, so you may need to check their settings."));
-       }
-
        if (_film->last_written_by_earlier_than(2, 16, 14)) {
                for (auto c: content) {
                        if (auto stf = dynamic_pointer_cast<StringTextFileContent>(c)) {
                                stf->check_font_ids();
+                       } else if (auto dcp = dynamic_pointer_cast<DCPContent>(c)) {
+                               dcp->check_font_ids();
                        }
                }
        }
 
+       if (!changed.empty()) {
+               for (auto i: changed) {
+                       JobManager::instance()->add(make_shared<ExamineContentJob>(_film, i));
+               }
+               set_message (_("Some files have been changed since they were added to the project.\n\nThese files will now be re-examined, so you may need to check their settings."));
+       }
+
        set_progress (1);
        set_state (FINISHED_OK);
 }