From c95e44b38e672442b866e6d41be886a04e0c6fd7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 2 Apr 2024 18:09:18 -0600 Subject: [PATCH] make send return a sensible name if it is a MasterSend --- libs/ardour/send.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc index bfd3d9a6b9..0d8ec3bc2f 100644 --- a/libs/ardour/send.cc +++ b/libs/ardour/send.cc @@ -91,6 +91,8 @@ Send::name_and_id_new_send (Session& s, Role r, uint32_t& bitslot, bool ignore_b return string_compose (_("send %1"), (bitslot = s.next_send_id ())); case Delivery::Foldback: return string_compose (_("foldback %1"), (bitslot = s.next_aux_send_id ())); + case Delivery::MasterSend: + return string_compose (_("master %1"), (bitslot = s.next_aux_send_id ())); default: fatal << string_compose (_("programming error: send created using role %1"), enum_2_string (r)) << endmsg; abort(); /*NOTREACHED*/