restore the post-export nag screen

git-svn-id: svn://localhost/ardour2/branches/3.0@13576 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-11-30 23:17:58 +00:00
parent 310c261669
commit e7063bb900

View file

@ -27,6 +27,7 @@
#include "export_dialog.h"
#include "gui_thread.h"
#include "nag.h"
#include "i18n.h"
@ -331,6 +332,14 @@ ExportDialog::show_progress ()
}
if (!status->aborted()) {
NagScreen* ns = NagScreen::maybe_nag (_("export"));
if (ns) {
ns->nag ();
delete ns;
}
status->finish ();
}
}