summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-08 14:31:19 +0100
committerCarl Hetherington <cth@carlh.net>2023-01-14 21:13:22 +0100
commit0ecea9f4d1a772e99f396e47364e68abfbfe9f7f (patch)
treecbcd29ed889d276dda2a4f1b4029c5b84d1eb296 /src
parent5800e1f2abecb709cbdc1408d1328f29cdbcb370 (diff)
Bump libdcp to fix font ID bug in the combiner (#2402).
Diffstat (limited to 'src')
-rw-r--r--src/wx/verify_dcp_dialog.cc6
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..82d9ca231 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;
}
}