mirror of https://github.com/m-labs/artiq.git
browser: fix ctrl scroll type error
This commit is contained in:
parent
5ab2602802
commit
e9f1b9d4ff
|
@ -83,7 +83,7 @@ class ZoomIconView(QtWidgets.QListView):
|
||||||
w = self.iconSize().width()*self.zoom_step**(
|
w = self.iconSize().width()*self.zoom_step**(
|
||||||
ev.angleDelta().y()/120.)
|
ev.angleDelta().y()/120.)
|
||||||
if a <= w <= b:
|
if a <= w <= b:
|
||||||
self.setIconSize(QtCore.QSize(w, w*self.aspect))
|
self.setIconSize(QtCore.QSize(int(w), int(w*self.aspect)))
|
||||||
else:
|
else:
|
||||||
QtWidgets.QListView.wheelEvent(self, ev)
|
QtWidgets.QListView.wheelEvent(self, ev)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue