summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/prompter.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-03-05 22:34:49 +0000
committerCarl Hetherington <carl@carlh.net>2012-03-05 22:34:49 +0000
commit9a74312f9f2413ea7f39ee493a9bd099e93a0704 (patch)
treed96bff9af50029d15c32cf7bb32fc3809a24fda4 /libs/gtkmm2ext/prompter.cc
parentf8b570db5ea8c29969b44f5180ec5fea0795b3a5 (diff)
Make route group dialog resizable; make ArdourPrompter entries
resize when the window is resized, rather than the label (#4756). git-svn-id: svn://localhost/ardour2/branches/3.0@11599 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/gtkmm2ext/prompter.cc')
-rw-r--r--libs/gtkmm2ext/prompter.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gtkmm2ext/prompter.cc b/libs/gtkmm2ext/prompter.cc
index a9a6d8da96..4c3ff43a73 100644
--- a/libs/gtkmm2ext/prompter.cc
+++ b/libs/gtkmm2ext/prompter.cc
@@ -69,8 +69,8 @@ Prompter::init ()
entryBox.set_homogeneous (false);
entryBox.set_spacing (5);
entryBox.set_border_width (10);
- entryBox.pack_start (entryLabel);
- entryBox.pack_start (entry, false, false);
+ entryBox.pack_start (entryLabel, false, false);
+ entryBox.pack_start (entry, true, true);
get_vbox()->pack_start (entryBox);
show_all_children();