Added more cases where the voice is empty

pull/466/head
Luca 2 years ago committed by GitHub
parent 09651404d5
commit 2bc226301a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      src/uimenu.cpp

@ -582,7 +582,12 @@ void CUIMenu::EditProgramNumber (CUIMenu *pUIMenu, TMenuEvent Event)
}
string voiceName = pUIMenu->m_pMiniDexed->GetVoiceName (nTG); // Skip empty voices
if (voiceName == "INIT VOICE") {
if (voiceName == "INIT VOICE"
|| voiceName == "init voice"
|| voiceName == " "
|| voiceName == "----------"
|| voiceName == "~~~~~~~~~~" )
{
if (Event == MenuEventStepUp) {
CUIMenu::EditProgramNumber (pUIMenu, MenuEventStepUp);
}

Loading…
Cancel
Save