mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 23:17:46 +01:00
more hacking on the processor list and processor box - note that ctrl-x/c/v now work "as expected" and / is a keystroke for toggling active state. cut-n-paste ops should all basically work
git-svn-id: svn://localhost/ardour2/branches/3.0@5366 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
4944514034
commit
939cff5150
8 changed files with 333 additions and 119 deletions
|
|
@ -265,3 +265,15 @@ IOProcessor::feeds (boost::shared_ptr<Route> other) const
|
|||
{
|
||||
return _output && _output->connected_to (other->input());
|
||||
}
|
||||
|
||||
void
|
||||
IOProcessor::disconnect ()
|
||||
{
|
||||
if (_input) {
|
||||
_input->disconnect (this);
|
||||
}
|
||||
|
||||
if (_output) {
|
||||
_output->disconnect (this);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue