Correct ViewBox.translate to use setRange(x, y) when possible rather than making two calls.

This commit is contained in:
Luke Campagnola 2013-11-06 15:35:24 -05:00
parent 96a4ff7cd5
commit ea8079334f

View File

@ -608,11 +608,10 @@ class ViewBox(GraphicsWidget):
self.setRange(vr.translated(t), padding=0)
else:
if x is not None:
x1, x2 = vr.left()+x, vr.right()+x
self.setXRange(x1, x2, padding=0)
x = vr.left()+x, vr.right()+x
if y is not None:
y1, y2 = vr.top()+y, vr.bottom()+y
self.setYRange(y1, y2, padding=0)
y = vr.top()+y, vr.bottom()+y
self.setRange(xRange=x, yRange=y, padding=0)