[GB.FORM]

* BUG: Invert the mousewheel zoom way


git-svn-id: svn://localhost/gambas/trunk@6832 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Fabien Bodard 2015-01-12 22:00:49 +00:00
parent 61e61e2dfa
commit 66bc237053

View file

@ -621,7 +621,7 @@ End
Public Sub View_MouseWheel()
If Mouse.Control Then
Me.Zoom = $fZoom - 0.1 * Mouse.Delta
Me.Zoom = $fZoom + 0.1 * Mouse.Delta
Endif
End