mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
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:
parent
9ad2875905
commit
d901932f07
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue