summaryrefslogtreecommitdiff
path: root/gtk2_ardour/startup.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-09-01 11:32:38 +0000
committerCarl Hetherington <carl@carlh.net>2012-09-01 11:32:38 +0000
commitfb9a184340e0ec2e73a3a7050a53b881317afd8c (patch)
tree592004bc04da3da06f99c4dba7752e1805d3906a /gtk2_ardour/startup.cc
parentc779474c13dfae1cccdaccd2b8ad44fd69d35d3c (diff)
Patch from timbyr to stop the startup dialog
unexpectedly resizing when you ask for more options (#5068). git-svn-id: svn://localhost/ardour2/branches/3.0@13159 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/startup.cc')
-rw-r--r--gtk2_ardour/startup.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc
index 7f7dbe8f32..b17270cbbd 100644
--- a/gtk2_ardour/startup.cc
+++ b/gtk2_ardour/startup.cc
@@ -1250,10 +1250,11 @@ ArdourStartup::setup_more_options_page ()
_limit_output_ports.signal_clicked().connect (sigc::mem_fun (*this, &ArdourStartup::limit_outputs_clicked));
_create_master_bus.signal_clicked().connect (sigc::mem_fun (*this, &ArdourStartup::master_bus_button_clicked));
- /* note that more_options_vbox is NOT visible by
- * default. this is entirely by design - this page
- * should be skipped unless explicitly requested.
+ /* note that more_options_vbox is "visible" by default even
+ * though it may not be displayed to the user, this is so the dialog
+ * doesn't resize.
*/
+ more_options_vbox.show_all ();
session_options_page_index = append_page (more_options_vbox);
set_page_title (more_options_vbox, _("Advanced Session Options"));