fixes #687
This commit is contained in:
parent
3745cb1a2d
commit
cd2125cccb
@ -847,10 +847,6 @@ class ViewBox(GraphicsWidget):
|
|||||||
childRange[ax][1] += wp
|
childRange[ax][1] += wp
|
||||||
targetRect[ax] = childRange[ax]
|
targetRect[ax] = childRange[ax]
|
||||||
args['xRange' if ax == 0 else 'yRange'] = targetRect[ax]
|
args['xRange' if ax == 0 else 'yRange'] = targetRect[ax]
|
||||||
if len(args) == 0:
|
|
||||||
return
|
|
||||||
args['padding'] = 0
|
|
||||||
args['disableAutoRange'] = False
|
|
||||||
|
|
||||||
# check for and ignore bad ranges
|
# check for and ignore bad ranges
|
||||||
for k in ['xRange', 'yRange']:
|
for k in ['xRange', 'yRange']:
|
||||||
@ -858,6 +854,11 @@ class ViewBox(GraphicsWidget):
|
|||||||
if not np.all(np.isfinite(args[k])):
|
if not np.all(np.isfinite(args[k])):
|
||||||
r = args.pop(k)
|
r = args.pop(k)
|
||||||
#print("Warning: %s is invalid: %s" % (k, str(r))
|
#print("Warning: %s is invalid: %s" % (k, str(r))
|
||||||
|
|
||||||
|
if len(args) == 0:
|
||||||
|
return
|
||||||
|
args['padding'] = 0
|
||||||
|
args['disableAutoRange'] = False
|
||||||
|
|
||||||
self.setRange(**args)
|
self.setRange(**args)
|
||||||
finally:
|
finally:
|
||||||
|
Loading…
Reference in New Issue
Block a user