editors/Viewer.py
changeset 2494 a30dfc8a0c29
parent 2457 9deec258ab1a
child 2555 5dce99e69027
--- a/editors/Viewer.py	Fri Oct 12 13:24:47 2018 +0300
+++ b/editors/Viewer.py	Mon Dec 24 16:20:20 2018 +0300
@@ -3665,7 +3665,7 @@
 
     def OnMouseWheelWindow(self, event):
         if self.StartMousePos is None or self.StartScreenPos is None:
-            rotation = event.GetWheelRotation() / event.GetWheelDelta()
+            rotation = event.GetWheelRotation() // event.GetWheelDelta()
             if event.ShiftDown():
                 x, y = self.GetViewStart()
                 xp = max(0, min(x - rotation * 3, self.Editor.GetVirtualSize()[0] / self.Editor.GetScrollPixelsPerUnit()[0]))