Don't count channels reveiving input from another channel as unused
This commit is contained in:
@@ -418,8 +418,9 @@ void FxMixerView::deleteUnusedChannels()
|
||||
}
|
||||
}
|
||||
}
|
||||
FxChannel * ch = Engine::fxMixer()->effectChannel( i );
|
||||
// delete channel if no references found
|
||||
if( empty )
|
||||
if( empty && ch->m_receives.isEmpty() )
|
||||
{
|
||||
deleteChannel( i );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user