browser: fix ctrl scroll type error

This commit is contained in:
Simon Renblad 2024-07-10 15:47:32 +08:00 committed by Sébastien Bourdeauducq
parent 5ab2602802
commit e9f1b9d4ff
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**(
ev.angleDelta().y()/120.)
if a <= w <= b:
self.setIconSize(QtCore.QSize(w, w*self.aspect))
self.setIconSize(QtCore.QSize(int(w), int(w*self.aspect)))
else:
QtWidgets.QListView.wheelEvent(self, ev)