From: Carl Hetherington Date: Mon, 18 Mar 2024 17:09:28 +0000 (+0100) Subject: Log job errors as errors during verify. X-Git-Tag: v2.16.79~5 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=08562514979d54288f850f95b8f514b1500614a1;p=dcpomatic.git Log job errors as errors during verify. --- diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index 2b108c945..7694121b1 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -130,6 +130,7 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr 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()) {