mirror of
https://github.com/m-labs/artiq.git
synced 2025-01-07 17:43:34 +08:00
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
Block a user