diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2026-08-02 01:15:14 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2026-08-02 01:15:14 -0600 |
| commit | f5066a8ca2fb50aa3dddf2c8847e52574cdde6ad (patch) | |
| tree | 140a8222f5a33dac59f622c4e7bb0b31d63de428 /ui | |
| parent | f6b68f1482a6b6491c9163cf7e9b1489aa24d6d0 (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>
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/main_window.py | 2 |
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 |
