Skip to content

Commit

Permalink
Merge pull request #398 from marcosfrenkel/enhancement/extend_timer_l…
Browse files Browse the repository at this point in the history
…imit

extended the maximum refreshing number to 1000 instead of 100
  • Loading branch information
wpfff authored Jun 5, 2023
2 parents 9769c5d + 0cb4443 commit c555344
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions plottr/apps/autoplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c555344

Please sign in to comment.