plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit a1b61b4635adf4e070fdf91e3a512d94195214cd
parent 81a90f898bf58852ca414ae612751e6cff06566c
Author: Russ Cox <rsc@swtch.com>
Date:   Wed,  2 Jul 2008 12:49:08 -0400

devdraw: OS X mouse scroll fix (Jeff Sickel)

Diffstat:
Msrc/cmd/devdraw/osx-screen.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/devdraw/osx-screen.c b/src/cmd/devdraw/osx-screen.c @@ -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; }