From 01a0dcfde7cdfdd4ade603338fb9b2fc586a2f01 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 10 Mar 2019 21:00:11 +0000 Subject: [PATCH] Better error when trying to load a much-too-large file as a KDM in the KDM creator. --- src/tools/dcpomatic_kdm.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc index 36de84906..6c1fbd800 100644 --- a/src/tools/dcpomatic_kdm.cc +++ b/src/tools/dcpomatic_kdm.cc @@ -442,6 +442,12 @@ private: this, _("Could not decrypt the DKDM. Perhaps it was not created with the correct certificate.") ); + } catch (dcp::MiscError& e) { + error_dialog ( + this, + _("Could not read file as a KDM. It is much too large. Make sure you are loading a DKDM (XML) file."), + std_to_wx(e.what()) + ); } } d->Destroy (); -- 2.30.2