Merge pull request #763 from hhslepicka/fix_downsampling

FIX: Protection over downsampling calculation.
This commit is contained in:
Luke Campagnola 2018-10-11 16:09:23 +03:00 committed by GitHub
commit e62889d095
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -527,8 +527,9 @@ class PlotDataItem(GraphicsObject):
if self.opts['autoDownsample']: if self.opts['autoDownsample']:
# this option presumes that x-values have uniform spacing # this option presumes that x-values have uniform spacing
range = self.viewRect() range = self.viewRect()
if range is not None: if range is not None and len(x) > 1:
dx = float(x[-1]-x[0]) / (len(x)-1) dx = float(x[-1]-x[0]) / (len(x)-1)
if dx != 0.0:
x0 = (range.left()-x[0]) / dx x0 = (range.left()-x[0]) / dx
x1 = (range.right()-x[0]) / dx x1 = (range.right()-x[0]) / dx
width = self.getViewBox().width() width = self.getViewBox().width()