diff --git a/artiq/applets/plot_hist.py b/artiq/applets/plot_hist.py index 71f227ac3..b3493c836 100755 --- a/artiq/applets/plot_hist.py +++ b/artiq/applets/plot_hist.py @@ -34,7 +34,8 @@ class HistogramPlot(pyqtgraph.PlotWidget): brush=(0, 0, 255, 150)) self.setTitle(title) else: - self.timer.start(1000) + if not self.timer.isActive(): + self.timer.start(1000) def length_warning(self): self.clear()