summaryrefslogtreecommitdiff
path: root/libs/ardour/delivery.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-06-14 19:00:08 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-06-14 19:00:08 +0000
commit19610514166e42a3c860accf576beb3ac1381a42 (patch)
tree2e6d00995428aed7188f7fab774230f01d438b9e /libs/ardour/delivery.cc
parenta5674e92712aacae648e8d55ec7b767b6d988542 (diff)
monitor send gets access to the (shared) pannable of the track/bus, thus ensuring that the monitor feed is panned. required a few fixes along the way
git-svn-id: svn://localhost/ardour2/branches/3.0@9731 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/delivery.cc')
-rw-r--r--libs/ardour/delivery.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/libs/ardour/delivery.cc b/libs/ardour/delivery.cc
index 619be9a077..231080a0ad 100644
--- a/libs/ardour/delivery.cc
+++ b/libs/ardour/delivery.cc
@@ -393,11 +393,6 @@ Delivery::unpan ()
void
Delivery::reset_panner ()
{
- if (_role == Listen) {
- /* monitor out gets no panner */
- return;
- }
-
if (panners_legal) {
if (!no_panner_reset) {
@@ -606,3 +601,4 @@ Delivery::panner () const
return boost::shared_ptr<Panner>();
}
}
+