From 1d557ba69f79105580443634d53552da44e545fc Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 12 Sep 2019 23:35:57 +0200 Subject: [PATCH] Use new icons in mixer window --- gtk2_ardour/foldback_strip.cc | 6 +++--- gtk2_ardour/mixer_strip.cc | 2 +- gtk2_ardour/vca_master_strip.cc | 2 +- 3 files changed, 5 insertions(+), 5 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")); diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc index 5f135a4a1c..c4bc0ce84b 100644 --- a/gtk2_ardour/mixer_strip.cc +++ b/gtk2_ardour/mixer_strip.cc @@ -182,7 +182,7 @@ MixerStrip::init () hide_button.set_tweaks (ArdourButton::Square); set_tooltip (width_button, t); - hide_button.set_icon (ArdourIcon::CloseCross); + hide_button.set_icon (ArdourIcon::HideEye); hide_button.set_tweaks (ArdourButton::Square); set_tooltip (&hide_button, _("Hide this mixer strip")); diff --git a/gtk2_ardour/vca_master_strip.cc b/gtk2_ardour/vca_master_strip.cc index df6b0ee02a..574655427e 100644 --- a/gtk2_ardour/vca_master_strip.cc +++ b/gtk2_ardour/vca_master_strip.cc @@ -80,7 +80,7 @@ VCAMasterStrip::VCAMasterStrip (Session* s, boost::shared_ptr v) set_tooltip (mute_button, _("Mute slaves")); mute_button.signal_button_release_event().connect (sigc::mem_fun (*this, &VCAMasterStrip::mute_release), false); - hide_button.set_icon (ArdourIcon::CloseCross); + hide_button.set_icon (ArdourIcon::HideEye); set_tooltip (&hide_button, _("Hide this VCA strip")); hide_button.signal_clicked.connect (sigc::mem_fun(*this, &VCAMasterStrip::hide_clicked));