summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-12-13 00:15:11 +0000
committerCarl Hetherington <carl@carlh.net>2011-12-13 00:15:11 +0000
commit1deb4fd7adb2c5dc7cbcd4ed76c2515a73090b89 (patch)
treee3bad8854d5fa660231f8ebe9e65c2914be763c0 /gtk2_ardour/export_dialog.cc
parent56c33f0202b51bc973b77b396d99d75ac858f716 (diff)
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
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 2097b2d153..8d5ccae469 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -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);