From 87559a6054ac097d1f511845965a9117ef2265d6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 30 Sep 2018 15:33:43 +0200 Subject: Fix Mixbus master-bus tape-saturation controllable --- libs/ardour/route.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 8b60d68632..b57002abab 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -5433,10 +5433,12 @@ boost::shared_ptr Route::tape_drive_controllable () const { #ifdef MIXBUS - - if ( _ch_pre && (is_master() || mixbus()) ) { + if (_ch_pre && mixbus()) { return boost::dynamic_pointer_cast (_ch_pre->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 4))); } + if (_ch_pre && is_master()) { + return boost::dynamic_pointer_cast (_ch_pre->control (Evoral::Parameter (ARDOUR::PluginAutomation, 0, 1))); + } #endif return boost::shared_ptr(); -- cgit v1.2.3