From 3f52087e5f638f1d9740f1a271a6096dbf725525 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 2 Apr 2024 18:10:45 -0600 Subject: [PATCH] don't bother asking for a monitor section if livetrax --- libs/ardour/session_state.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index a74ec00194..e0e899aa44 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -657,7 +657,7 @@ Session::create (const string& session_template, BusProfile const * bus_profile, return rv; } - if (Config->get_use_monitor_bus()) { + if (Config->get_use_monitor_bus() && !Profile->get_livetrax()) { add_monitor_section (); } }