Remove special-case for send-level display name

These days, `describe_parameter()` handles this fine and returns "Send".
This is in preparation for adding a polarity-invert control to sends.
This commit is contained in:
Robin Gareus 2022-09-04 00:38:01 +02:00
parent 97540dafde
commit a307a367cc
1 changed files with 1 additions and 3 deletions

View File

@ -249,9 +249,7 @@ ProcessorEntry::ProcessorEntry (ProcessorBox* parent, boost::shared_ptr<Processo
continue;
}
if (boost::dynamic_pointer_cast<Send> (_processor)) {
label = _("Send");
} else if (boost::dynamic_pointer_cast<Return> (_processor)) {
if (boost::dynamic_pointer_cast<Return> (_processor)) {
label = _("Return");
}