diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-23 01:17:16 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-23 08:05:50 +0200 |
| commit | 6ed12f7a0d1411a7cf9a86954dc8edf2451990a9 (patch) | |
| tree | 52dce2f8dfbbeb152532f93786f3bd0694d94515 | |
| parent | 1427d3d34589cd779d5e06da281e6fd65a765ccb (diff) | |
Fix missing libdcp warning message.
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index 1c70e5e0d..595ef18d6 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -163,6 +163,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job case dcp::VerificationNote::Code::EXTERNAL_ASSET: add(i, _("This DCP refers to at the asset %n in another DCP (and perhaps others), so it is a \"version file\" (VF)")); break; + case dcp::VerificationNote::Code::THREED_ASSET_MARKED_AS_TWOD: + add(i, _("The asset %f is 3D but its MXF is marked as 2D.")); + break; case dcp::VerificationNote::Code::INVALID_STANDARD: add(i, _("This DCP uses the Interop standard, but it should be made with SMPTE.")); break; |
