summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui2.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-04-07 23:58:59 +0200
committerRobin Gareus <robin@gareus.org>2015-04-08 00:00:23 +0200
commitc9f9bb263fc3f96e383216d515c62ac6706b56da (patch)
tree516fbed7c8ff1ca2c84c9a223c7ffda746ec3049 /gtk2_ardour/ardour_ui2.cc
parent1c4fc896d0cc5efb88896958a123dc8ef85efc0c (diff)
more transport button caironizing.
Diffstat (limited to 'gtk2_ardour/ardour_ui2.cc')
-rw-r--r--gtk2_ardour/ardour_ui2.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc
index f5f9f62b66..2abca97503 100644
--- a/gtk2_ardour/ardour_ui2.cc
+++ b/gtk2_ardour/ardour_ui2.cc
@@ -282,8 +282,8 @@ ARDOUR_UI::setup_transport ()
stop_button.set_icon (ArdourButton::BtnStop);
play_selection_button.set_elements ((ArdourButton::Element) (ArdourButton::Edge|ArdourButton::Body|ArdourButton::VectorIcon));
play_selection_button.set_icon (ArdourButton::BtnRange);
-
- auto_loop_button.set_image (get_icon (X_("transport_loop")));
+ auto_loop_button.set_elements ((ArdourButton::Element) (ArdourButton::Edge|ArdourButton::Body|ArdourButton::VectorIcon));
+ auto_loop_button.set_icon (ArdourButton::BtnLoop);
rec_button.set_elements ((ArdourButton::Element) (ArdourButton::Edge|ArdourButton::Body|ArdourButton::VectorIcon));
rec_button.set_icon (ArdourButton::RecButton);
@@ -364,7 +364,7 @@ ARDOUR_UI::setup_transport ()
transport_button_size_group->add_widget (roll_button);
transport_button_size_group->add_widget (stop_button);
- goto_start_button.set_size_request (-1, 40);
+ goto_start_button.set_size_request (28, 44);
HBox* tbox1 = manage (new HBox);
HBox* tbox2 = manage (new HBox);