From ea5346f88412d0035bf076caea8c96343b7e4c05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Thu, 15 Nov 2018 08:17:39 +0100 Subject: [PATCH] RangeScan: remove minimum/fixed size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robert Jördens --- artiq/gui/entries.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/artiq/gui/entries.py b/artiq/gui/entries.py index bfb4f405d..eb5040719 100644 --- a/artiq/gui/entries.py +++ b/artiq/gui/entries.py @@ -211,9 +211,6 @@ class _RangeScan(LayoutWidget): start = ScientificSpinBox() start.setStyleSheet("QDoubleSpinBox {color:blue}") - start.setMinimumSize(110, 0) - start.setSizePolicy(QtWidgets.QSizePolicy( - QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)) disable_scroll_wheel(start) self.addWidget(start, 0, 1) @@ -225,7 +222,6 @@ class _RangeScan(LayoutWidget): stop = ScientificSpinBox() stop.setStyleSheet("QDoubleSpinBox {color:red}") - stop.setMinimumSize(110, 0) disable_scroll_wheel(stop) self.addWidget(stop, 2, 1)