restore the post-export nag screen
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 30 Nov 2012 23:17:58 +0000 (23:17 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 30 Nov 2012 23:17:58 +0000 (23:17 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@13576 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/export_dialog.cc

index 34113c47a5723c6625bfc3117097cdd0d4f2887d..9d707678cf3048ed49b99ebfca10ebb2a970c452 100644 (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 ();
        }
 }