mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-29 13:13:34 +08:00
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.setMinimum(1)
|
||||
npoints.setMaximum((1 << 31) - 1)
|
||||
disable_scroll_wheel(npoints)
|
||||
self.addWidget(npoints, 1, 1)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user