diff --git a/Source/Plugin/CabbagePluginProcessor.cpp b/Source/Plugin/CabbagePluginProcessor.cpp index a66b75a..b3e10f3 100644 --- a/Source/Plugin/CabbagePluginProcessor.cpp +++ b/Source/Plugin/CabbagePluginProcessor.cpp @@ -1762,7 +1762,8 @@ void CabbagePluginAudioProcessor::setParameter (int index, float newValue) #ifndef Cabbage_No_Csound float range, min, comboRange; //add index of control that was changed to dirty control vector, unless it's a combobox. - if(getGUICtrls(index).getStringProp(CabbageIDs::type)!=CabbageIDs::combobox) + //if(getGUICtrls(index).getStringProp(CabbageIDs::type)!=CabbageIDs::combobox) + if(!getGUICtrls(index).getStringProp("filetype").contains("snaps")) dirtyControls.addIfNotAlreadyThere(index); //Logger::writeToLog("parameterSet:"+String(newValue)); if(index<(int)guiCtrls.size())//make sure index isn't out of range