diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-08-03 09:16:27 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-08-03 09:16:27 +0200 |
| commit | 5254047c3ad8c8c4b7ed7bf5b735b8448fcf1c29 (patch) | |
| tree | 21671f3baaa1db61e20e22906ad071b987b615bd /src/tools | |
| parent | 061466f78357b15ad39f699b1f03c9c4fa35954e (diff) | |
| parent | 591c73b472f0eb74225dbc1b08885f552b8814c4 (diff) | |
Merge branch 'v2.15.x' of ssh://git.carlh.net/home/carl/git/dcpomatic into v2.15.x
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 17f652625..11f4bfaa7 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -423,6 +423,8 @@ public: #endif } catch (dcp::ReadError& e) { error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what())); + } catch (DCPError& e) { + error_dialog (this, wxString::Format(_("Could not load a DCP from %s"), std_to_wx(dir.string())), std_to_wx(e.what())); } } |
