Remove Mixbus Aux-Link special case 1/2

This commit is contained in:
Robin Gareus 2020-03-23 17:45:38 +01:00
parent 4780a0fd60
commit d050256a41
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 2 additions and 4 deletions

View File

@ -79,7 +79,7 @@ PannerShell::PannerShell (string name, Session& s, boost::shared_ptr<Pannable> p
{
if (is_send) {
_pannable_internal.reset(new Pannable (s));
if (Config->get_link_send_and_route_panner() && !ARDOUR::Profile->get_mixbus()) {
if (Config->get_link_send_and_route_panner()) {
_panlinked = true;
} else {
_panlinked = false;
@ -187,9 +187,7 @@ PannerShell::set_state (const XMLNode& node, int version)
}
if (node.get_property (X_("linked-to-route"), yn)) {
if (!ARDOUR::Profile->get_mixbus()) {
_panlinked = yn;
}
_panlinked = yn;
}
node.get_property (X_("user-panner"), _user_selected_panner_uri);