From 2bc226301a3bf5d5a7a30ab95011a32a7e04a874 Mon Sep 17 00:00:00 2001 From: Luca <51792528+donluca@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:21:55 +0200 Subject: [PATCH] Added more cases where the voice is empty --- src/uimenu.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/uimenu.cpp b/src/uimenu.cpp index 53054be..38aba21 100644 --- a/src/uimenu.cpp +++ b/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); }