From d6beec1a5537894715a8e310e78a2454f3471f7f Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Fri, 8 Apr 2016 01:10:41 +0800 Subject: [PATCH] dashboard: allow more than 99 scan points --- artiq/gui/entries.py | 1 + 1 file changed, 1 insertion(+) diff --git a/artiq/gui/entries.py b/artiq/gui/entries.py index 34fb8e078..70b1026a6 100644 --- a/artiq/gui/entries.py +++ b/artiq/gui/entries.py @@ -168,6 +168,7 @@ class _RangeScan(LayoutWidget): npoints = QtWidgets.QSpinBox() npoints.setMinimum(1) + npoints.setMaximum((1 << 31) - 1) disable_scroll_wheel(npoints) self.addWidget(npoints, 1, 1)