summaryrefslogtreecommitdiff
path: root/ui/main_window.py
diff options
context:
space:
mode:
Diffstat (limited to 'ui/main_window.py')
-rw-r--r--ui/main_window.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/main_window.py b/ui/main_window.py
index 8f7a3be..616f16d 100644
--- a/ui/main_window.py
+++ b/ui/main_window.py
@@ -304,7 +304,7 @@ class MainWindow(QMainWindow):
self._ctrl_dock.raise_()
def _connect_signals(self):
- self.engine.new_data.connect(self.processor.on_raw_data)
+ self.engine.new_data.connect(self.processor.on_raw_batch)
self.processor.processed_data.connect(self._chart.on_new_data)
self.engine.log_started.connect(lambda p: self._log_lbl.setText(f"● {p}"))
self.engine.log_stopped.connect(lambda p: self._log_lbl.setText(f"✓ {p}"))