summaryrefslogtreecommitdiff
path: root/gtk2_ardour/session_archive_dialog.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-12-27 18:32:27 +0100
committerRobin Gareus <robin@gareus.org>2016-12-27 18:33:47 +0100
commite71ea821dd0166015b41ade10c198455349dc662 (patch)
tree8762d473404a7d18b8551a560eed2509eaf25bfc /gtk2_ardour/session_archive_dialog.cc
parentfe01666475187e996bc1c37f69c691b433984211 (diff)
Enable session-archive feature
Diffstat (limited to 'gtk2_ardour/session_archive_dialog.cc')
-rw-r--r--gtk2_ardour/session_archive_dialog.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk2_ardour/session_archive_dialog.cc b/gtk2_ardour/session_archive_dialog.cc
index 15bdbc8165..9e2df17eba 100644
--- a/gtk2_ardour/session_archive_dialog.cc
+++ b/gtk2_ardour/session_archive_dialog.cc
@@ -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 ();