mirror of https://github.com/m-labs/artiq.git
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 = 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