summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2020-03-23 15:13:39 -0500
committerBen Loftis <ben@harrisonconsoles.com>2020-03-23 15:24:08 -0500
commitc765079b2f7c5e369875c9f714f078dc0c16af90 (patch)
treeb1d6fb5406b1a36b26e3594db227712242cc53f7 /gtk2_ardour/route_ui.cc
parent7058a8074fa7d8778e30ef2e0adbe5e69f179d63 (diff)
Show Sends button should instigate a Spill, akin to a VCA spill
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 2110c2ff17..3ed8335cee 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -77,6 +77,7 @@
#include "keyboard.h"
#include "latency_gui.h"
#include "mixer_strip.h"
+#include "mixer_ui.h"
#include "patch_change_widget.h"
#include "plugin_pin_dialog.h"
#include "rgb_macros.h"
@@ -205,7 +206,7 @@ RouteUI::init ()
show_sends_button = manage (new ArdourButton);
show_sends_button->set_name ("send alert button");
- UI::instance()->set_tip (show_sends_button, _("make mixer strips show sends to this bus"), "");
+ UI::instance()->set_tip (show_sends_button, _("Show the strips that send to this bus, and control them from the faders"), "");
monitor_input_button = new ArdourButton (ArdourButton::default_elements);
monitor_input_button->set_name ("monitor button");
@@ -1152,8 +1153,10 @@ RouteUI::show_sends_press(GdkEventButton* ev)
if (s == _route) {
set_showing_sends_to (boost::shared_ptr<Route> ());
+ Mixer_UI::instance()->show_spill (boost::shared_ptr<ARDOUR::Stripable>());
} else {
set_showing_sends_to (_route);
+ Mixer_UI::instance()->show_spill (_route);
}
}
}