13
0

make rude alert buttons expand vertically to use all available space.

This commit is contained in:
Paul Davis 2017-02-08 22:23:43 +01:00
parent 675c59652c
commit aef942da1b

View 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);