diff options
Diffstat (limited to 'ui/windows/settings_window.py')
| -rw-r--r-- | ui/windows/settings_window.py | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/ui/windows/settings_window.py b/ui/windows/settings_window.py index 290d9e0..09b7a1a 100644 --- a/ui/windows/settings_window.py +++ b/ui/windows/settings_window.py @@ -40,7 +40,7 @@ class SettingsWindow(QWidget): "show_grid": True, "font_size": 12, "antialias": True, - "developer_mode": True, + "developer_mode": False, } def __init__(self, registry: DeviceRegistry, @@ -114,7 +114,8 @@ class SettingsWindow(QWidget): 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. Off = real-hardware-only, no debug tools." + "Mode option are available, and enables verbose DEBUG output in\n" + "the terminal. Off = real-hardware-only, no debug tools." ) lay.addRow("Developer mode:", self._dev_chk) @@ -305,16 +306,16 @@ class SettingsWindow(QWidget): def _apply(self): theme = self._theme_cb.currentText().lower() self.cfg.update({ - "theme": theme, - "font_size": self._font_sp.value(), - "antialias": self._aa_chk.isChecked(), + "theme": theme, + "font_size": self._font_sp.value(), + "antialias": self._aa_chk.isChecked(), "developer_mode": self._dev_chk.isChecked(), - "poll_ms": self._poll_sp.value(), - "buffer_size": self._buf_sp.value(), - "log_dir": self._log_edit.text(), - "time_window_s": self._tw_sp.value(), - "show_legend": self._legend_chk.isChecked(), - "show_grid": self._grid_chk.isChecked(), + "poll_ms": self._poll_sp.value(), + "buffer_size": self._buf_sp.value(), + "log_dir": self._log_edit.text(), + "time_window_s": self._tw_sp.value(), + "show_legend": self._legend_chk.isChecked(), + "show_grid": self._grid_chk.isChecked(), }) self.theme_changed.emit(theme) self.settings_changed.emit(dict(self.cfg)) |
