From feb0a66d7765f2939419541ace4f4fb3027436e9 Mon Sep 17 00:00:00 2001 From: marcosf2 Date: Wed, 31 May 2023 10:42:23 -0500 Subject: [PATCH] extended the maximum refreshing number to 1000 instead of 100 --- plottr/apps/autoplot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plottr/apps/autoplot.py b/plottr/apps/autoplot.py index 4bed933b..0bece004 100644 --- a/plottr/apps/autoplot.py +++ b/plottr/apps/autoplot.py @@ -87,6 +87,7 @@ def __init__(self, name: str, parent: Optional[QtWidgets.QWidget] = None): super().__init__(name, parent) self.monitorInput = MonitorIntervalInput() + self.monitorInput.spin.setMaximum(1000) self.monitorInput.setToolTip('Set to 0 for disabling triggering') self.monitorInput.intervalChanged.connect(self.setMonitorInterval) self.addWidget(self.monitorInput)