forked from M-Labs/artiq
1
0
Fork 0

browser: fix ctrl scroll type error

This commit is contained in:
Simon Renblad 2024-07-10 15:47:32 +08:00 committed by Sebastien Bourdeauducq
parent 7f79dedea3
commit 7e6a94bdff
1 changed files with 1 additions and 1 deletions

View File

@ -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)