summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/ardour_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 18fc273656..5b1a24859e 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -4502,10 +4502,10 @@ ARDOUR_UI::reconnect_to_engine ()
if (AudioEngine::instance()->start ()) {
// TODO somehow make this the topmost window (above any dialogs currently visible)
if (editor) {
- MessageDialog msg (*editor, _("Could not reconnect to the Audio/MIDI engine"));
+ MessageDialog msg (*editor, AudioEngine::instance()->get_last_backend_error ());
msg.run ();
} else {
- MessageDialog msg (_("Could not reconnect to the Audio/MIDI engine"));
+ MessageDialog msg (AudioEngine::instance()->get_last_backend_error ());
msg.run ();
}
return -1;