mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
re-allow panners for monitoring-section (for now)
This commit is contained in:
parent
a4dc05f603
commit
d27d6e673f
1 changed files with 2 additions and 2 deletions
|
|
@ -398,7 +398,7 @@ Delivery::reset_panner ()
|
||||||
if (!_no_panner_reset) {
|
if (!_no_panner_reset) {
|
||||||
|
|
||||||
if (_panshell) {
|
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()));
|
_panshell->configure_io (ChanCount (DataType::AUDIO, pans_required()), ChanCount (DataType::AUDIO, pan_outs()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -413,7 +413,7 @@ void
|
||||||
Delivery::panners_became_legal ()
|
Delivery::panners_became_legal ()
|
||||||
{
|
{
|
||||||
if (_panshell) {
|
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()));
|
_panshell->configure_io (ChanCount (DataType::AUDIO, pans_required()), ChanCount (DataType::AUDIO, pan_outs()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue