From df515ab30a4ff70e95d520dd487e1aa649dc5aa9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 9 Jul 2024 09:52:42 -0600 Subject: [PATCH] do not add "direct" to the name of direct out sends after a route rename --- libs/ardour/route.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index cf61fa4d7c..7537b60fbc 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -4838,8 +4838,7 @@ Route::set_name (const string& str) } /* One exception to the above rule: direct outs (LiveTrax) */ if (_direct_outs) { - string do_name = string_compose (_("%1 direct"), newname); - if (!_direct_outs->set_name (do_name)) { + if (!_direct_outs->set_name (newname)) { return false; } }