PBD::Signal<...>::connect() is already thread safe, so drop intermediate proxy/call_s...
[ardour.git] / gtk2_ardour / session_archive_dialog.cc
index 15bdbc8165c514180dac96bffb3f16f291b4567e..9e2df17ebade974cec15c3ee7d83a3d4fa6d868c 100644 (file)
@@ -31,7 +31,7 @@ using namespace Gtk;
 using namespace ARDOUR;
 
 SessionArchiveDialog::SessionArchiveDialog ()
-       : ArdourDialog (_("Zip/Archive Session"))
+       : ArdourDialog (_("Zip/Archive Current Session"))
        , ProgressReporter ()
        , only_used_checkbox (_("Exclude unused audio sources"))
 {
@@ -74,6 +74,10 @@ SessionArchiveDialog::SessionArchiveDialog ()
 
        vbox->pack_start (only_used_checkbox, false, false);
 
+       label = manage (new Label (_("Note: This archives only the current session state, snapshots are not included."), ALIGN_START));
+       label->set_line_wrap (true);
+       vbox->pack_start (*label, false, false);
+
        vbox->pack_start (progress_bar, true, true, 12);
 
        vbox->show_all ();