summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()));
}