| 1038 | } |
| 1039 | |
| 1040 | void NeuralPiAudioProcessorEditor::timerCallback() |
| 1041 | { |
| 1042 | getGainSlider().setValue(getParameterValue(gainName), NotificationType::dontSendNotification); |
| 1043 | getMasterSlider().setValue(getParameterValue(masterName), NotificationType::dontSendNotification); |
| 1044 | getBassSlider().setValue(getParameterValue(bassName), NotificationType::dontSendNotification); |
| 1045 | getMidSlider().setValue(getParameterValue(midName), NotificationType::dontSendNotification); |
| 1046 | getTrebleSlider().setValue(getParameterValue(trebleName), NotificationType::dontSendNotification); |
| 1047 | getPresenceSlider().setValue(getParameterValue(presenceName), NotificationType::dontSendNotification); |
| 1048 | getDelaySlider().setValue(getParameterValue(delayName), NotificationType::dontSendNotification); |
| 1049 | getReverbSlider().setValue(getParameterValue(reverbName), NotificationType::dontSendNotification); |
| 1050 | getModelSlider().setValue(getParameterValue(modelName), NotificationType::dontSendNotification); |
| 1051 | getIrSlider().setValue(getParameterValue(irName), NotificationType::dontSendNotification); |
| 1052 | } |
| 1053 | |
| 1054 | AudioProcessorParameter* NeuralPiAudioProcessorEditor::getParameter(const String& paramId) |
| 1055 | { |
nothing calls this directly
no outgoing calls
no test coverage detected