Don't show hidden controls inline in the mixer-strip

This commit is contained in:
Robin Gareus 2018-10-28 20:37:20 +01:00
parent b30ab9802a
commit ebcabf59da

View File

@ -223,6 +223,10 @@ ProcessorEntry::ProcessorEntry (ProcessorBox* parent, boost::shared_ptr<Processo
std::string label = _processor->describe_parameter (*i);
if (label == X_("hidden")) {
continue;
}
if (boost::dynamic_pointer_cast<Send> (_processor)) {
label = _("Send");
} else if (boost::dynamic_pointer_cast<Return> (_processor)) {