| 171 | } |
| 172 | |
| 173 | juce::ValueTree PluginParameters::createNotAutomatableValueTree() |
| 174 | { |
| 175 | juce::ValueTree notAutomatableParameters = juce::ValueTree("Settings"); |
| 176 | notAutomatableParameters.setProperty(ADVANCED_PARAMETER_CONTROL_VISIBLE_NAME, juce::var(false), nullptr); |
| 177 | notAutomatableParameters.setProperty(NETWORK1_NAME_NAME, juce::var("Funk"), nullptr); |
| 178 | notAutomatableParameters.setProperty(NETWORK2_NAME_NAME, juce::var("Djembe"), nullptr); |
| 179 | return notAutomatableParameters; |
| 180 | } |
| 181 | |
| 182 | void PluginParameters::clearNotAutomatableValueTree(juce::ValueTree notAutomatableParameters) { |
| 183 | notAutomatableParameters.removeProperty(ADVANCED_PARAMETER_CONTROL_VISIBLE_NAME, nullptr); |
nothing calls this directly
no outgoing calls
no test coverage detected