diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-01 22:41:57 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-01-01 23:15:31 +0100 |
| commit | 391a2852b6e73792882df5ea0d65238d840ab894 (patch) | |
| tree | 6171768f453cf0f1e698b6631822052adcd0818c /src/wx/verify_dcp_dialog.cc | |
| parent | afbe4ce5dd551149f931c41bf27c22ef1f55155f (diff) | |
Bump libdcp for fixes to font handling in combine operations.multi-fonts-in-pkl
Diffstat (limited to 'src/wx/verify_dcp_dialog.cc')
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index bd36334cd..81f8e2d5f 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -383,6 +383,12 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job case dcp::VerificationNote::Code::INVALID_MAIN_PICTURE_ACTIVE_AREA: add(i, _("The <MainPictureActiveArea> is either not a multiple of 2, or is bigger than an asset.")); break; + case dcp::VerificationNote::Code::DUPLICATE_ASSET_ID_IN_PKL: + add(i, _("The PKL %n has more than one asset with the same ID")); + break; + case dcp::VerificationNote::Code::DUPLICATE_ASSET_ID_IN_ASSETMAP: + add(i, _("The ASSETMAP %n has more than one asset with the same ID")); + break; } } |
