summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-11-30 23:17:58 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-11-30 23:17:58 +0000
commite7063bb9001224ba4b72229e9f370ba312e69c16 (patch)
treea59ae81be8c126295feb80eae98c778ea9d144e3 /gtk2_ardour/export_dialog.cc
parent310c261669a211faac9e7072d3084757fe4cc0e1 (diff)
restore the post-export nag screen
git-svn-id: svn://localhost/ardour2/branches/3.0@13576 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 34113c47a5..9d707678cf 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -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 ();
}
}