Bug fixes, xref search, more context menus

This commit is contained in:
Jack Andersen
2018-08-25 18:57:02 -10:00
parent 27cdee0c14
commit 19c5443e9e
17 changed files with 922 additions and 294 deletions

View File

@@ -515,6 +515,7 @@ void Sequencer::ChannelState::killKeygroup(uint8_t kg, bool now)
m_lastVoice.reset();
if (now)
{
vox->kill();
it = m_chanVoxs.erase(it);
continue;
}
@@ -533,6 +534,7 @@ void Sequencer::ChannelState::killKeygroup(uint8_t kg, bool now)
Voice* vox = it->get();
if (vox->m_keygroup == kg)
{
vox->kill();
it = m_keyoffVoxs.erase(it);
continue;
}