| 941 | } |
| 942 | |
| 943 | void NeuralPiAudioProcessorEditor::updateOutConnectedLabel(bool connected) |
| 944 | { |
| 945 | if (connected) |
| 946 | { |
| 947 | getOutConnectedLabel().setText("(Connected)", dontSendNotification); |
| 948 | } |
| 949 | else |
| 950 | { |
| 951 | getOutConnectedLabel().setText("(Disconnected!)", dontSendNotification); |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | // This callback is invoked if an OSC message has been received setting either value. |
| 956 | void NeuralPiAudioProcessorEditor::valueChanged(Value& value) |
nothing calls this directly
no outgoing calls
no test coverage detected