[bugfix] switching between zooming types now does not cause weird mouse event behavior anymore

This commit is contained in:
Sebastian Wehling-Benatelli 2015-06-25 10:35:58 +02:00
parent ec3ecd04bb
commit 4292197818

View File

@ -609,10 +609,11 @@ class PickDlg(QDialog):
self.disconnectScrollEvent()
self.figToolBar.zoom()
else:
self.connectPressEvent(self.panPress)
self.connectMotionEvent(self.panMotion)
self.connectReleaseEvent(self.panRelease)
self.connectScrollEvent(self.scrollZoom)
self.figToolBar.zoom()
self.cidpress = self.connectPressEvent(self.panPress)
self.cidmotion = self.connectMotionEvent(self.panMotion)
self.cidrelease = self.connectReleaseEvent(self.panRelease)
self.cidscroll = self.connectScrollEvent(self.scrollZoom)
def scrollZoom(self, gui_event, factor=2.):