Make route group dialog resizable; make ArdourPrompter entries
authorCarl Hetherington <carl@carlh.net>
Mon, 5 Mar 2012 22:34:49 +0000 (22:34 +0000)
committerCarl Hetherington <carl@carlh.net>
Mon, 5 Mar 2012 22:34:49 +0000 (22:34 +0000)
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

gtk2_ardour/route_group_dialog.cc
libs/gtkmm2ext/prompter.cc

index 4e3198439e2c7448e7bc54e5fb6cb9f7acf2941c..eb74887771e19c763a54fbac2aad301c0cd04c11 100644 (file)
@@ -50,7 +50,7 @@ RouteGroupDialog::RouteGroupDialog (RouteGroup* g, bool creating_new)
 {
        set_modal (true);
        set_skip_taskbar_hint (true);
-       set_resizable (false);
+       set_resizable (true);
        set_position (Gtk::WIN_POS_MOUSE);
        set_name (N_("RouteGroupDialog"));
 
index a9a6d8da969b82fb693e095dbef63ab476dc549c..4c3ff43a73a00fff070a39b59c081c4d217118b1 100644 (file)
@@ -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();