From dcdcaf4b475e4efb4d62812c52415ba9ea6c6f2c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 10 May 2024 08:31:38 -0600 Subject: [PATCH] ensure that the master send is directly before the main outs. --- libs/ardour/route.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 78b087502f..e4bf429c96 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -5306,6 +5306,12 @@ Route::setup_invisible_processors () new_processors.insert (meter_point, _meter); } + + if (Profile->get_livetrax() && _master_send) { + assert (!_master_send->display_to_user()); + new_processors.insert (main, _master_send); + } + /* Foldback Sends */ for (ProcessorList::iterator i = foldback_sends.begin(); i != foldback_sends.end(); ++i) {