| 928 | } |
| 929 | |
| 930 | void NeuralPiAudioProcessorEditor::updateInConnectedLabel() |
| 931 | { |
| 932 | const bool connected = oscReceiver.isConnected(); |
| 933 | if (connected) |
| 934 | { |
| 935 | getInConnectedLabel().setText("(Connected)", dontSendNotification); |
| 936 | } |
| 937 | else |
| 938 | { |
| 939 | getInConnectedLabel().setText("(Disconnected!)", dontSendNotification); |
| 940 | } |
| 941 | } |
| 942 | |
| 943 | void NeuralPiAudioProcessorEditor::updateOutConnectedLabel(bool connected) |
| 944 | { |
nothing calls this directly
no test coverage detected