summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-01-15 23:35:22 +0100
committerCarl Hetherington <cth@carlh.net>2023-01-16 09:11:16 +0100
commit81636ae2043240ff44199ac0c5df61dac31bf5ac (patch)
tree5caf4aab3e9b1a4a7e097178fd180e4d5ce09bf4 /src
parent12728573fcc511dc0a1824e74e8ab4fcba69067a (diff)
Bump libdcp to version which checks for empty interop subtitle assets.
Diffstat (limited to 'src')
-rw-r--r--src/wx/verify_dcp_dialog.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc
index 82d9ca231..b3184e29f 100644
--- a/src/wx/verify_dcp_dialog.cc
+++ b/src/wx/verify_dcp_dialog.cc
@@ -389,6 +389,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
case dcp::VerificationNote::Code::DUPLICATE_ASSET_ID_IN_ASSETMAP:
add(i, _("The ASSETMAP %n has more than one asset with the same ID."));
break;
+ case dcp::VerificationNote::Code::MISSING_SUBTITLE:
+ add(i, _("The subtitle asset %n contains no subtitles."));
+ break;
}
}