summaryrefslogtreecommitdiff
path: root/libs/ardour/internal_send.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-01-18 18:37:26 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-01-18 18:37:26 +0000
commit759f1216afa4487441106d3b2c17e47651f57d11 (patch)
treec1439c9f44117bd4e8536c0b7eeaa7fa69b8c4e5 /libs/ardour/internal_send.cc
parent9524b08752f22684c472acd5b3184d5c786e7103 (diff)
fix reload of session with new send naming in place, drop "aux-" prefix from name of aux sends
git-svn-id: svn://localhost/ardour2/branches/3.0@11264 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/internal_send.cc')
-rw-r--r--libs/ardour/internal_send.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/internal_send.cc b/libs/ardour/internal_send.cc
index cb9043fcee..27e219dd22 100644
--- a/libs/ardour/internal_send.cc
+++ b/libs/ardour/internal_send.cc
@@ -325,7 +325,7 @@ string
InternalSend::display_name () const
{
if (_role == Aux) {
- return string_compose (X_("aux-%1"), _name);
+ return string_compose (X_("%1"), _name);
} else {
return _name;
}