From e7063bb9001224ba4b72229e9f370ba312e69c16 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 30 Nov 2012 23:17:58 +0000 Subject: [PATCH] restore the post-export nag screen git-svn-id: svn://localhost/ardour2/branches/3.0@13576 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/export_dialog.cc | 9 +++++++++ 1 file changed, 9 insertions(+) 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 (); } }