diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2026-08-02 01:38:09 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2026-08-02 01:38:09 -0600 |
| commit | fa0304793a4525db68cb53b527d695bfa2c65966 (patch) | |
| tree | 1d10c2cd030e34324fbebe1f093588de2e310dee /ui/windows/settings_window.py | |
| parent | a3aa1df99df8f413cac2ba6020b7cd0dec6d2390 (diff) | |
Remove Debug window feature
Debug button, DebugWindow, and the stdout/stderr tee (core/debug_log.py)
weren't wanted. developer_mode toggle stays — still gates device
Simulation Mode checkboxes and verbose terminal logging.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Diffstat (limited to 'ui/windows/settings_window.py')
| -rw-r--r-- | ui/windows/settings_window.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/windows/settings_window.py b/ui/windows/settings_window.py index 09b7a1a..a1d9de1 100644 --- a/ui/windows/settings_window.py +++ b/ui/windows/settings_window.py @@ -113,9 +113,9 @@ class SettingsWindow(QWidget): self._dev_chk = QCheckBox() self._dev_chk.setChecked(self.cfg["developer_mode"]) self._dev_chk.setToolTip( - "Controls whether the Debug window and each device's Simulation\n" - "Mode option are available, and enables verbose DEBUG output in\n" - "the terminal. Off = real-hardware-only, no debug tools." + "Controls whether each device's Simulation Mode option is\n" + "available, and enables verbose DEBUG output in the terminal.\n" + "Off = real-hardware-only, no debug tools." ) lay.addRow("Developer mode:", self._dev_chk) |
