Fix setup of port insert IO names.
git-svn-id: svn://localhost/ardour2/branches/3.0@6276 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
@@ -184,7 +184,7 @@ PortInsert::set_name (const std::string& name)
|
||||
{
|
||||
bool ret = Processor::set_name (name);
|
||||
|
||||
ret = (_input->set_name (name) || _output->set_name (name));
|
||||
ret = (ret && _input->set_name (name) && _output->set_name (name));
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user