From 8802267628d11a0d35965f0c40d1f67277f977ce Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Mon, 13 Jul 2015 10:03:43 +0200 Subject: [PATCH] fix zooming issue after S Pick is set --- pylot/core/util/widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index e3b5b9a1..e87031d5 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -324,7 +324,7 @@ class PickDlg(QDialog): self.updateCurrentLimits() if phase: if self.zoomAction.isChecked(): - self.zoomAction.toggle() + self.zoomAction.trigger() self.disconnectReleaseEvent() self.disconnectScrollEvent() self.disconnectMotionEvent()