diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-02-25 00:40:30 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-02-25 00:43:25 +0000 |
| commit | e44ed94827f1c0674358f04cc8657a36eef53d29 (patch) | |
| tree | 1672ec0c013e5623158fb352c4ad7f564a506dff /src/tools | |
| parent | 14cccb179fff7bbbf422e13f9d2e3264239c93c7 (diff) | |
Handle errors in subtitle XML better (#1209).
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index 3e36b575b..d42320bfd 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -181,7 +181,7 @@ public: shared_ptr<Job> last = jm->get().back(); if (last->finished_in_error()) { - error_dialog (this, std_to_wx (last->error_summary()) + ".\n"); + error_dialog(this, std_to_wx(last->error_summary()) + ".\n", std_to_wx(last->error_details())); return; } |
