With Delphi under Windows, the mouse_PWheel function return always M_WUP value.
ZenGL: Last Version
Compiler: Delphi XE2
OS: Windows 7 64bit
My workaround (Unit: [zgl_application.pas], Function: [app_ProcessMessages]):
Change:
WM_MOUSEWHEEL:
begin
if wParam > 0 Then
with:
WM_MOUSEWHEEL:
begin
if (shortint(wParam shr 16) div 120) > 0 then
Original issue reported on code.google.com by boy34pa...@gmail.com on 4 Nov 2012 at 5:32
Original issue reported on code.google.com by
boy34pa...@gmail.com
on 4 Nov 2012 at 5:32