diff --git a/Source/SpikeSorterEditor.cpp b/Source/SpikeSorterEditor.cpp index e25ff44..5b3e576 100644 --- a/Source/SpikeSorterEditor.cpp +++ b/Source/SpikeSorterEditor.cpp @@ -116,6 +116,11 @@ void SpikeSorterEditor::comboBoxChanged(ComboBox* comboBox) } +void SpikeSorterEditor::updateSettings() +{ + selectedStreamHasChanged(); +} + void SpikeSorterEditor::nextElectrode() { int numAvailable = electrodeList->getNumItems(); diff --git a/Source/SpikeSorterEditor.h b/Source/SpikeSorterEditor.h index 287b3ed..c9a0ad8 100644 --- a/Source/SpikeSorterEditor.h +++ b/Source/SpikeSorterEditor.h @@ -55,6 +55,9 @@ class SpikeSorterEditor : public VisualizerEditor, /** ComboBox::Listener callback*/ void comboBoxChanged(ComboBox* comboBox) override; + /** Called when settings are updated */ + void updateSettings() override; + /** Selects the next available electrode */ void nextElectrode();