diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-03-18 18:09:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-18 18:09:28 +0100 |
| commit | 08562514979d54288f850f95b8f514b1500614a1 (patch) | |
| tree | d0a202b948748d909233b93e95137c82e08aeed3 /src | |
| parent | 9fd2a610d2d0c45c7c1d6dfa016f8daeac75f689 (diff) | |
Log job errors as errors during verify.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 1 |
1 files changed, 1 insertions, 0 deletions
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<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()) { |
