mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
internal sends in livetrax are never linked to the Route panner
Note: this could discriminate based on _role == MasterSend, but livetrax doesn't allow any other type of internal send anyway.
This commit is contained in:
parent
dfa24e3292
commit
d36e7d2f91
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ PannerShell::PannerShell (string name, Session& s, std::shared_ptr<Pannable> p,
|
||||||
{
|
{
|
||||||
if (is_send) {
|
if (is_send) {
|
||||||
_pannable_internal.reset(new Pannable (s, tdp));
|
_pannable_internal.reset(new Pannable (s, tdp));
|
||||||
if (Config->get_link_send_and_route_panner()) {
|
if (!Profile->get_livetrax() && Config->get_link_send_and_route_panner()) {
|
||||||
_panlinked = true;
|
_panlinked = true;
|
||||||
} else {
|
} else {
|
||||||
_panlinked = false;
|
_panlinked = false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue