devdraw: OS X mouse scroll fix (Jeff Sickel)

This commit is contained in:
Russ Cox 2008-07-02 12:49:08 -04:00
parent 81a90f898b
commit a1b61b4635

View file

@ -342,7 +342,7 @@ mouseevent(EventRef event)
return eventNotHandledErr;
}
mousetrack(osx.xy.x, osx.xy.y, osx.buttons|osx.kbuttons, msec());
mousetrack(osx.xy.x, osx.xy.y, osx.buttons|osx.kbuttons|wheel, msec());
return noErr;
}