From 1b681a814c308af777e37273d432b548b07ada39 Mon Sep 17 00:00:00 2001 From: Holger Wirtz <wirtz@parasitstudio.de> Date: Mon, 9 May 2022 18:17:40 +0200 Subject: [PATCH] Fix for stopping stuck notes when editing parameters via SYSEX. --- src/minidexed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 83d3154..45baf96 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -1110,7 +1110,7 @@ void CMiniDexed::setVoiceDataElement(uint8_t data, uint8_t number, uint8_t nTG) assert (m_pTG[nTG]); m_pTG[nTG]->setVoiceDataElement(constrain(data, 0, 155),constrain(number, 0, 99)); - m_pTG[nTG]->doRefreshVoice(); + //m_pTG[nTG]->doRefreshVoice(); m_UI.ParameterChanged (); }