forked from M-Labs/artiq
dashboard: allow more than 99 scan points
This commit is contained in:
parent
5fef95b073
commit
1d3c0166da
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue