Log job errors as errors during verify.
authorCarl Hetherington <cth@carlh.net>
Mon, 18 Mar 2024 17:09:28 +0000 (18:09 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 18 Mar 2024 17:09:28 +0000 (18:09 +0100)
src/wx/verify_dcp_dialog.cc

index 2b108c9451de0f1b4c3bd3cb5d9680a01daf2e4d..7694121b160120e8d9358fff71d5b50c6c7d6a2a 100644 (file)
@@ -130,6 +130,7 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
        if (job->finished_in_error() && job->error_summary() != "") {
                /* We have an error that did not come from dcp::verify */
                add_bullet (dcp::VerificationNote::Type::ERROR, std_to_wx(job->error_summary()));
+               ++counts[dcp::VerificationNote::Type::ERROR];
        }
 
        for (auto i: job->notes()) {