make rude alert buttons expand vertically to use all available space.
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 8 Feb 2017 21:23:43 +0000 (22:23 +0100)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 8 Feb 2017 21:23:43 +0000 (22:23 +0100)
gtk2_ardour/ardour_ui2.cc

index c264c2c1c6fa2fa25fe1b6c4ab82abfd082046bd..ac05f5b58db596900b34c14628d7185fb7dccca4 100644 (file)
@@ -547,9 +547,9 @@ ARDOUR_UI::setup_transport ()
        alert_box->set_homogeneous (true);
        alert_box->set_spacing (1);
        alert_box->set_border_width (0);
-       alert_box->pack_start (solo_alert_button, true, false, 0);
-       alert_box->pack_start (auditioning_alert_button, true, false, 0);
-       alert_box->pack_start (feedback_alert_button, true, false, 0);
+       alert_box->pack_start (solo_alert_button, true, true);
+       alert_box->pack_start (auditioning_alert_button, true, true);
+       alert_box->pack_start (feedback_alert_button, true, true);
 
        /* clock button size groups */
        Glib::RefPtr<SizeGroup> button_height_size_group = SizeGroup::create (Gtk::SIZE_GROUP_VERTICAL);