collapse filechooser widget initially in export dialog

git-svn-id: svn://localhost/ardour2/branches/3.0@2947 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Nick Mainsbridge 2008-01-19 15:47:40 +00:00
parent a188851698
commit 85ea9028b5

View file

@ -216,11 +216,8 @@ ExportDialog::ExportDialog(PublicEditor& e)
filter_any.set_name("All files");
filter_any.add_pattern("*");
file_chooser.add_filter(filter_any);
file_chooser.set_no_show_all();
get_vbox()->pack_start (progress_bar, false, false, 5);
progress_bar.set_no_show_all();
progress_bar.hide();
file_hbox.set_spacing (5);
file_hbox.set_border_width (5);
@ -1060,10 +1057,14 @@ ExportDialog::start_export ()
progress_bar.set_fraction (0);
progress_bar.hide();
progress_bar.set_no_show_all();
cancel_label.set_text (_("Cancel"));
show_all();
hpacker.show_all();
file_hbox.show();
file_frame.show();
file_chooser.show();
show ();
if (track_and_master_selection_allowed) {
track_vpacker.show();
@ -1071,8 +1072,6 @@ ExportDialog::start_export ()
track_vpacker.hide();
}
file_chooser.show();
if (channel_count_selection_allowed) {
channel_count_combo.show();
channel_count_label.show();