fixed panning bug introduced in inp:274

This commit is contained in:
Luke Campagnola 2013-03-19 20:54:05 -04:00
parent 4716a84117
commit e656366fab

View File

@ -524,12 +524,13 @@ class ViewBox(GraphicsWidget):
if t is not None: if t is not None:
t = Point(t) t = Point(t)
self.setRange(vr.translated(t), padding=0) self.setRange(vr.translated(t), padding=0)
elif x is not None: else:
x1, x2 = vr.left()+x, vr.right()+x if x is not None:
self.setXRange(x1, x2, padding=0) x1, x2 = vr.left()+x, vr.right()+x
elif y is not None: self.setXRange(x1, x2, padding=0)
y1, y2 = vr.top()+y, vr.bottom()+y if y is not None:
self.setYRange(y1, y2, padding=0) y1, y2 = vr.top()+y, vr.bottom()+y
self.setYRange(y1, y2, padding=0)