summaryrefslogtreecommitdiff
path: root/gtk2_ardour/foldback_strip.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-09-12 23:35:57 +0200
committerRobin Gareus <robin@gareus.org>2019-09-12 23:36:25 +0200
commit1d557ba69f79105580443634d53552da44e545fc (patch)
tree039d79360386959444f4d4337af2313b74f1f74c /gtk2_ardour/foldback_strip.cc
parent9c752c249d4b87a24d71f8c745027efac8ea95e2 (diff)
Use new icons in mixer window
Diffstat (limited to 'gtk2_ardour/foldback_strip.cc')
-rw-r--r--gtk2_ardour/foldback_strip.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/foldback_strip.cc b/gtk2_ardour/foldback_strip.cc
index af31bcc978..6cd31b555a 100644
--- a/gtk2_ardour/foldback_strip.cc
+++ b/gtk2_ardour/foldback_strip.cc
@@ -317,19 +317,19 @@ FoldbackStrip::init ()
_width_owner = 0;
_previous_button.set_name ("mixer strip button");
- _previous_button.set_icon (ArdourIcon::NudgeLeft);
+ _previous_button.set_icon (ArdourIcon::ScrollLeft);
_previous_button.set_tweaks (ArdourButton::Square);
UI::instance()->set_tip (&_previous_button, _("Previous foldback bus"), "");
_previous_button.set_sensitive (false);
_next_button.set_name ("mixer strip button");
- _next_button.set_icon (ArdourIcon::NudgeRight);
+ _next_button.set_icon (ArdourIcon::ScrollRight);
_next_button.set_tweaks (ArdourButton::Square);
UI::instance()->set_tip (&_next_button, _("Next foldback bus"), "");
_next_button.set_sensitive (false);
_hide_button.set_name ("mixer strip button");
- _hide_button.set_icon (ArdourIcon::CloseCross);
+ _hide_button.set_icon (ArdourIcon::HideEye);
_hide_button.set_tweaks (ArdourButton::Square);
set_tooltip (&_hide_button, _("Hide Foldback strip"));