forked from M-Labs/artiq
dashboard: allow more than 99 scan points
This commit is contained in:
parent
13b4929dd8
commit
d6beec1a55
|
@ -168,6 +168,7 @@ class _RangeScan(LayoutWidget):
|
||||||
|
|
||||||
npoints = QtWidgets.QSpinBox()
|
npoints = QtWidgets.QSpinBox()
|
||||||
npoints.setMinimum(1)
|
npoints.setMinimum(1)
|
||||||
|
npoints.setMaximum((1 << 31) - 1)
|
||||||
disable_scroll_wheel(npoints)
|
disable_scroll_wheel(npoints)
|
||||||
self.addWidget(npoints, 1, 1)
|
self.addWidget(npoints, 1, 1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue