summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-03-17 16:22:25 +0100
committerCarl Hetherington <cth@carlh.net>2021-03-17 16:22:25 +0100
commitcdb95926a42948144dad16c227e9cc01a00d49b8 (patch)
tree7e79927b1fbc45984c4f66483ee81b0ad81d86cd /src
parent671b037338fa6bc09dc0795191a23ff2999f027c (diff)
Missing verification note text.
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 44b2ed134..c8a3ad321 100644
--- a/src/wx/verify_dcp_dialog.cc
+++ b/src/wx/verify_dcp_dialog.cc
@@ -335,6 +335,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
case dcp::VerificationNote::Code::MISSING_JPEG200_TLM_MARKER:
add(i, _("A JPEG2000 frame has no TLM marker."));
break;
+ case dcp::VerificationNote::Code::SUBTITLE_OVERLAPS_REEL_BOUNDARY:
+ add(i, _("A subtitle lasts longer than the reel it is in."));
+ break;
}
}