mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
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:
parent
97540dafde
commit
a307a367cc
1 changed files with 1 additions and 3 deletions
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue