summaryrefslogtreecommitdiff
path: root/libs/ardour/delivery.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-01-15 10:37:25 +0100
committerRobin Gareus <robin@gareus.org>2014-01-15 10:37:25 +0100
commitd27d6e673f6381947789e5934b42381f5b52847f (patch)
tree9bed8e5be577a6e685a17a60a3aedac29325ca1f /libs/ardour/delivery.cc
parenta4dc05f603c5de1748752eb6e078a2415f17532f (diff)
re-allow panners for monitoring-section (for now)
Diffstat (limited to 'libs/ardour/delivery.cc')
-rw-r--r--libs/ardour/delivery.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/delivery.cc b/libs/ardour/delivery.cc
index 045417b0cc..82e025845e 100644
--- a/libs/ardour/delivery.cc
+++ b/libs/ardour/delivery.cc
@@ -398,7 +398,7 @@ Delivery::reset_panner ()
if (!_no_panner_reset) {
if (_panshell) {
- assert (_role == Main || _role == Aux || _role == Send);
+ assert (_role == Main || _role == Aux || _role == Send || _role == Listen);
_panshell->configure_io (ChanCount (DataType::AUDIO, pans_required()), ChanCount (DataType::AUDIO, pan_outs()));
}
}
@@ -413,7 +413,7 @@ void
Delivery::panners_became_legal ()
{
if (_panshell) {
- assert (_role == Main || _role == Aux || _role == Send);
+ assert (_role == Main || _role == Aux || _role == Send || _role == Listen);
_panshell->configure_io (ChanCount (DataType::AUDIO, pans_required()), ChanCount (DataType::AUDIO, pan_outs()));
}