summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2026-08-02 01:15:14 -0600
committerChristian Kolset <christian.kolset@gmail.com>2026-08-02 01:15:14 -0600
commitf5066a8ca2fb50aa3dddf2c8847e52574cdde6ad (patch)
tree140a8222f5a33dac59f622c4e7bb0b31d63de428
parentf6b68f1482a6b6491c9163cf7e9b1489aa24d6d0 (diff)
Fix Settings button calling nonexistent _toggle_win method
Consolidation of Devices/Channels/Plot into ConfigWindow left the Settings button wired to a method that no longer exists. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
-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 22b01a0..93fbef2 100644
--- a/ui/main_window.py
+++ b/ui/main_window.py
@@ -249,7 +249,7 @@ class MainWindow(QMainWindow):
set_btn = QPushButton("⚙ Settings")
set_btn.setObjectName("toolbarSectionBtn"); set_btn.setCheckable(True)
- set_btn.clicked.connect(lambda c: self._toggle_win("settings", c, set_btn))
+ set_btn.clicked.connect(lambda c: self._open_settings())
tb.addWidget(set_btn); self._btn_settings = set_btn