We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 014c4cb commit 8a2fa96Copy full SHA for 8a2fa96
1 file changed
Source/Plugins/LfpDisplayNode/LfpDisplayEditor.cpp
@@ -109,6 +109,9 @@ void LfpDisplayEditor::comboBoxChanged(juce::ComboBox *cb)
109
{
110
std::cout << "Setting subprocessor to " << cb->getSelectedId() << std::endl;
111
setCanvasDrawableSubprocessor(cb->getSelectedId() - 1);
112
+ String sampleRateLabelText = "Sample Rate: ";
113
+ sampleRateLabelText += String(inputSampleRates[cb->getSelectedId() - 1]);
114
+ subprocessorSampleRateLabel->setText(sampleRateLabelText, dontSendNotification);
115
}
116
117
0 commit comments