From f5066a8ca2fb50aa3dddf2c8847e52574cdde6ad Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Sun, 2 Aug 2026 01:15:14 -0600 Subject: 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 --- ui/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui') 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 -- cgit v1.2.3