Make the export ranges view expand with the export dialogue.

git-svn-id: svn://localhost/ardour2/branches/3.0@10993 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-12-13 00:15:11 +00:00
parent 56c33f0202
commit 1deb4fd7ad

View file

@ -163,7 +163,7 @@ ExportDialog::init_gui ()
timespan_align->add (*timespan_selector);
timespan_align->set_padding (0, 12, 18, 0);
advanced_vbox->pack_start (*timespan_label, false, false, 0);
advanced_vbox->pack_start (*timespan_align, false, false, 0);
advanced_vbox->pack_start (*timespan_align, true, true, 0);
Gtk::Alignment * channels_align = Gtk::manage (new Gtk::Alignment());
channels_label = Gtk::manage (new Gtk::Label (_("Channels"), Gtk::ALIGN_LEFT));
@ -179,7 +179,7 @@ ExportDialog::init_gui ()
Gtk::Expander* advanced = Gtk::manage (new Gtk::Expander (_("Advanced options")));
advanced->add (*advanced_vbox);
get_vbox()->pack_start (*advanced, false, false);
get_vbox()->pack_start (*advanced, true, true);
Pango::AttrList bold;
Pango::Attribute b = Pango::Attribute::create_attr_weight (Pango::WEIGHT_BOLD);