summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui2.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-09-05 17:30:34 +0200
committerRobin Gareus <robin@gareus.org>2014-09-05 17:30:34 +0200
commitb7faa0588241adf4cf7e34685b4d0bc19e1c7f24 (patch)
tree7ab9d349dc399f709d92798d8b42df06ee7a75a7 /gtk2_ardour/ardour_ui2.cc
parent5fda9d55a4b91d5675b7ee5cfd348a8f0d81e923 (diff)
fix alert box: identical layout as transport option buttons
Diffstat (limited to 'gtk2_ardour/ardour_ui2.cc')
-rw-r--r--gtk2_ardour/ardour_ui2.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc
index 5e1522e538..fd42dd6897 100644
--- a/gtk2_ardour/ardour_ui2.cc
+++ b/gtk2_ardour/ardour_ui2.cc
@@ -326,9 +326,11 @@ ARDOUR_UI::setup_transport ()
feedback_alert_button.set_name ("feedback alert");
feedback_alert_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::feedback_alert_press), false);
- alert_box.pack_start (solo_alert_button, true, false);
- alert_box.pack_start (auditioning_alert_button, true, false);
- alert_box.pack_start (feedback_alert_button, true, false);
+ alert_box.set_homogeneous (true);
+ alert_box.set_spacing (2);
+ 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);
/* all transport buttons should be the same size vertically and
* horizontally