summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui2.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2016-12-18 17:14:02 -0600
committerBen Loftis <ben@harrisonconsoles.com>2016-12-18 17:14:02 -0600
commitb44889a55b493e3ab7aaf520d8f45687677cfe81 (patch)
tree91a1b1329bf3986b32ba3b46d746002ef67399b7 /gtk2_ardour/ardour_ui2.cc
parent25bb0873b9de2b8b3d2d83ee0a2b65051bf3e114 (diff)
Reinstate spacer between Punch In,Out.
Diffstat (limited to 'gtk2_ardour/ardour_ui2.cc')
-rw-r--r--gtk2_ardour/ardour_ui2.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc
index 46ce82743b..0d5a52ba13 100644
--- a/gtk2_ardour/ardour_ui2.cc
+++ b/gtk2_ardour/ardour_ui2.cc
@@ -481,9 +481,10 @@ ARDOUR_UI::setup_transport ()
++col;
transport_table.attach (punch_in_button, col, col + 1, 0, 1 , FILL, SHRINK, 0, 2);
- transport_table.attach (punch_out_button, col + 1, col + 2, 0, 1 , FILL, SHRINK, 0, 2);
- transport_table.attach (layered_button, col, col + 2, 1, 2 , FILL, SHRINK, 0, 2);
- col += 2;
+ transport_table.attach (*(manage (new Label (""))), col + 1, col + 2, 0, 1 , FILL, SHRINK, 2, 2);
+ transport_table.attach (punch_out_button, col + 2, col + 3, 0, 1 , FILL, SHRINK, 0, 2);
+ transport_table.attach (layered_button, col, col + 3, 1, 2 , FILL, SHRINK, 0, 2);
+ col += 3;
transport_table.attach (*(manage (new ArdourVSpacer ())), TCOL, 0, 2 , SHRINK, EXPAND|FILL, 3, 0);
++col;