Enable session-archive feature

This commit is contained in:
Robin Gareus 2016-12-27 18:32:27 +01:00
parent fe01666475
commit e71ea821dd
2 changed files with 5 additions and 3 deletions

View File

@ -14,9 +14,7 @@
<menuitem action='SnapshotSwitch'/>
#endif
<menuitem action='SaveTemplate'/>
#if 0
<menuitem action='Archive'/>
#endif
<menu name='Metadata' action='Metadata'>
<menuitem action='EditMetadata'/>
<menuitem action='ImportMetadata'/>

View 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 ();