summaryrefslogtreecommitdiff
path: root/gtk2_ardour/send_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-25 11:47:44 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-01-25 11:47:44 -0500
commitdd32c05cda5760dbdef09a823c6163b7a6660ae7 (patch)
treeb601d377f3e46f58b3262d83f29caa2fd43cc435 /gtk2_ardour/send_ui.cc
parent22a20c7333a14ac0c4af20287d8643e07ff92903 (diff)
GainMeter(Base) now has an explicit gain control given to it
Diffstat (limited to 'gtk2_ardour/send_ui.cc')
-rw-r--r--gtk2_ardour/send_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/send_ui.cc b/gtk2_ardour/send_ui.cc
index af23518c3a..7f87f2dea8 100644
--- a/gtk2_ardour/send_ui.cc
+++ b/gtk2_ardour/send_ui.cc
@@ -43,7 +43,7 @@ SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr<Send> s, Session* session
assert (_send);
_panners.set_panner (s->panner_shell(), s->panner());
- _gpm.set_controls (boost::shared_ptr<Route>(), s->meter(), s->amp());
+ _gpm.set_controls (boost::shared_ptr<Route>(), s->meter(), s->amp(), s->gain_control());
_hbox.pack_start (_gpm, true, true);
set_name (X_("SendUIFrame"));