summaryrefslogtreecommitdiff
path: root/libs/ardour/return.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-03-02 17:43:10 +0100
committerRobin Gareus <robin@gareus.org>2020-03-02 20:07:52 +0100
commit6e0062d5498f90c52d6aeb87e63bc846d2922020 (patch)
tree8ad1c0227e87123cb022f6931b7ff927afb235d5 /libs/ardour/return.cc
parent711f20a469e31ba8fe8d1474969855825dab834c (diff)
Refactor send naming (#7905)
This allows users to rename sends without enforcing a numeric bitslot number. However this prevents a user to to use "send" names that are potentially used for new sends or inserts.
Diffstat (limited to 'libs/ardour/return.cc')
-rw-r--r--libs/ardour/return.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/return.cc b/libs/ardour/return.cc
index ff5331b8a4..e22e479116 100644
--- a/libs/ardour/return.cc
+++ b/libs/ardour/return.cc
@@ -47,7 +47,7 @@ Return::name_and_id_new_return (Session& s, uint32_t& bitslot)
Return::Return (Session& s, bool internal)
: IOProcessor (s, (internal ? false : true), false,
- name_and_id_new_return (s, _bitslot))
+ name_and_id_new_return (s, _bitslot), "", DataType::AUDIO, true)
, _metering (false)
{
/* never muted */