summaryrefslogtreecommitdiff
path: root/gtk2_ardour/foldback_strip.cc
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2019-09-10 21:40:39 -0700
committerLen Ovens <len@ovenwerks.net>2019-09-10 21:40:39 -0700
commit729cd0e2b341a0b9a3068ba0b534b7238815d05b (patch)
treed087184497fc62809e914890a5391ee4552e60a8 /gtk2_ardour/foldback_strip.cc
parent2e857e9143e588ea629ea3a9f9e570d57825bbc1 (diff)
foldback gui: added tool tips for previous and next
Diffstat (limited to 'gtk2_ardour/foldback_strip.cc')
-rw-r--r--gtk2_ardour/foldback_strip.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/foldback_strip.cc b/gtk2_ardour/foldback_strip.cc
index 3f39e32fd5..75110e92c8 100644
--- a/gtk2_ardour/foldback_strip.cc
+++ b/gtk2_ardour/foldback_strip.cc
@@ -321,11 +321,13 @@ FoldbackStrip::init ()
_previous_button.set_name ("mixer strip button");
_previous_button.set_icon (ArdourIcon::NudgeLeft);
_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_tweaks (ArdourButton::Square);
+ UI::instance()->set_tip (&_next_button, _("next foldback bus"), "");
_next_button.set_sensitive (false);
prev_next_box.pack_start (_previous_button, false, true);