vx32

Local 9vx git repository for patches.
git clone git://r-36.net/vx32
Log | Files | Refs

commit 9cec7208c1d3cb8217856bfa64f94d14b988f836
parent 13f202cb2acc8e82535ce544ec22159b30615727
Author: Russ Cox <rsc@swtch.com>
Date:   Wed,  2 Jul 2008 12:49:58 -0400

9vx/OSX: scroll wheel fix (thanks to Jeff Sickel)

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

diff --git a/src/9vx/osx/screen.c b/src/9vx/osx/screen.c @@ -319,7 +319,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; }