diff options
| author | Christian Kolset <christian.kolset@gmail.com> | 2026-06-03 14:50:32 -0600 |
|---|---|---|
| committer | Christian Kolset <christian.kolset@gmail.com> | 2026-06-03 14:50:32 -0600 |
| commit | 93e7d0ecdc090fd4f0231b13933fc0fa095a1f22 (patch) | |
| tree | 1b3d441b53b0513c5d134d3785624b33c5d6b5f0 /ui/windows/channels_window.py | |
| parent | 00be36b73e68aa851328b43391afd060818d7f4b (diff) | |
Make Devices, Channels, Plot windows maximizable
Remove Qt.WindowType.Tool flag — it suppresses the maximize button.
Window now has standard chrome with minimize/maximize/close.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'ui/windows/channels_window.py')
| -rw-r--r-- | ui/windows/channels_window.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/windows/channels_window.py b/ui/windows/channels_window.py index 9a90670..01b798c 100644 --- a/ui/windows/channels_window.py +++ b/ui/windows/channels_window.py @@ -933,7 +933,7 @@ class ChannelsWindow(QWidget): def __init__(self, registry: DeviceRegistry, processor: SignalProcessor, parent=None): - super().__init__(parent, Qt.WindowType.Window | Qt.WindowType.Tool) + super().__init__(parent, Qt.WindowType.Window) self.registry = registry self.processor = processor |
