mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
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:
parent
a188851698
commit
85ea9028b5
1 changed files with 6 additions and 7 deletions
|
|
@ -216,11 +216,8 @@ ExportDialog::ExportDialog(PublicEditor& e)
|
||||||
filter_any.set_name("All files");
|
filter_any.set_name("All files");
|
||||||
filter_any.add_pattern("*");
|
filter_any.add_pattern("*");
|
||||||
file_chooser.add_filter(filter_any);
|
file_chooser.add_filter(filter_any);
|
||||||
file_chooser.set_no_show_all();
|
|
||||||
|
|
||||||
get_vbox()->pack_start (progress_bar, false, false, 5);
|
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_spacing (5);
|
||||||
file_hbox.set_border_width (5);
|
file_hbox.set_border_width (5);
|
||||||
|
|
@ -1060,10 +1057,14 @@ ExportDialog::start_export ()
|
||||||
|
|
||||||
progress_bar.set_fraction (0);
|
progress_bar.set_fraction (0);
|
||||||
progress_bar.hide();
|
progress_bar.hide();
|
||||||
progress_bar.set_no_show_all();
|
|
||||||
cancel_label.set_text (_("Cancel"));
|
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) {
|
if (track_and_master_selection_allowed) {
|
||||||
track_vpacker.show();
|
track_vpacker.show();
|
||||||
|
|
@ -1071,8 +1072,6 @@ ExportDialog::start_export ()
|
||||||
track_vpacker.hide();
|
track_vpacker.hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
file_chooser.show();
|
|
||||||
|
|
||||||
if (channel_count_selection_allowed) {
|
if (channel_count_selection_allowed) {
|
||||||
channel_count_combo.show();
|
channel_count_combo.show();
|
||||||
channel_count_label.show();
|
channel_count_label.show();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue