mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
Inform user if there have been dropouts during export
This commit is contained in:
parent
94d79a3809
commit
5014b20c5f
1 changed files with 6 additions and 0 deletions
|
|
@ -432,6 +432,12 @@ ExportDialog::show_progress ()
|
|||
}
|
||||
}
|
||||
|
||||
if (!status->aborted() && _session->export_xruns () > 0) {
|
||||
std::string txt = string_compose (_("There have been %1 dropouts during realtime-export."), _session->export_xruns ());
|
||||
Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_OK, true);
|
||||
msg.run();
|
||||
}
|
||||
|
||||
if (!status->aborted() && status->result_map.size() > 0) {
|
||||
hide();
|
||||
ExportReport er (_session, status);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue