We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be4d6cc commit 7c734ceCopy full SHA for 7c734ce
1 file changed
spikeinterface_gui/unitlistview.py
@@ -32,6 +32,13 @@ def update_manual_labels(self):
32
elif self.backend == 'panel':
33
self._panel_update_labels()
34
35
+ def notify_unit_visibility_changed(self):
36
+ selected_units = self.controller.get_visible_unit_ids()
37
+ visible_channel_inds = self.controller.get_common_sparse_channels(selected_units)
38
+ self.controller.set_channel_visibility(visible_channel_inds)
39
+ self.notify_channel_visibility_changed()
40
+ super().notify_unit_visibility_changed()
41
+
42
## Qt ##
43
def _qt_make_layout(self):
44
0 commit comments