Use new icons in mixer window
This commit is contained in:
parent
9c752c249d
commit
1d557ba69f
@ -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"));
|
||||
|
||||
|
@ -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"));
|
||||
|
||||
|
@ -80,7 +80,7 @@ VCAMasterStrip::VCAMasterStrip (Session* s, boost::shared_ptr<VCA> 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));
|
||||
|
Loading…
Reference in New Issue
Block a user