summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-02-25 00:40:30 +0000
committerCarl Hetherington <cth@carlh.net>2018-02-25 00:43:25 +0000
commite44ed94827f1c0674358f04cc8657a36eef53d29 (patch)
tree1672ec0c013e5623158fb352c4ad7f564a506dff /src/tools
parent14cccb179fff7bbbf422e13f9d2e3264239c93c7 (diff)
Handle errors in subtitle XML better (#1209).
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic_player.cc2
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;
}