Reinstate spacer between Punch In,Out.
authorBen Loftis <ben@harrisonconsoles.com>
Sun, 18 Dec 2016 23:14:02 +0000 (17:14 -0600)
committerBen Loftis <ben@harrisonconsoles.com>
Sun, 18 Dec 2016 23:14:02 +0000 (17:14 -0600)
gtk2_ardour/ardour_ui2.cc

index 46ce82743bb3c9d077139f774b32e2ab692ae024..0d5a52ba13478bc4b1f282191d3f033c1b3f756f 100644 (file)
@@ -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;