summaryrefslogtreecommitdiff
path: root/ui/windows/devices_window.py
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2026-06-03 14:50:32 -0600
committerChristian Kolset <christian.kolset@gmail.com>2026-06-03 14:50:32 -0600
commit93e7d0ecdc090fd4f0231b13933fc0fa095a1f22 (patch)
tree1b3d441b53b0513c5d134d3785624b33c5d6b5f0 /ui/windows/devices_window.py
parent00be36b73e68aa851328b43391afd060818d7f4b (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/devices_window.py')
-rw-r--r--ui/windows/devices_window.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/windows/devices_window.py b/ui/windows/devices_window.py
index f942552..5919938 100644
--- a/ui/windows/devices_window.py
+++ b/ui/windows/devices_window.py
@@ -256,7 +256,7 @@ class DevicesWindow(QWidget):
closed = pyqtSignal()
def __init__(self, registry: DeviceRegistry, engine: AcquisitionEngine, parent=None):
- super().__init__(parent, Qt.WindowType.Window | Qt.WindowType.Tool)
+ super().__init__(parent, Qt.WindowType.Window)
self.registry = registry
self.engine = engine
self._rows: dict = {}