From ece1f66f505d8e16c03112193365ef3200dc7e16 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 2 Apr 2024 18:10:18 -0600 Subject: [PATCH] master send uses _role == MasterSend, not _role == Aux --- libs/ardour/send.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc index 25bf64f4b3..ae6dfccac5 100644 --- a/libs/ardour/send.cc +++ b/libs/ardour/send.cc @@ -562,7 +562,7 @@ Send::set_name (const string& new_name) bool Send::display_to_user () const { - if (_role == Aux && Profile->get_livetrax()) { + if (_role == MasterSend && Profile->get_livetrax()) { return false; }