9vx/OSX: scroll wheel fix (thanks to Jeff Sickel) - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) commit 9cec7208c1d3cb8217856bfa64f94d14b988f836
 (DIR) parent 13f202cb2acc8e82535ce544ec22159b30615727
 (HTM) 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:
         M src/9vx/osx/screen.c                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) 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;        
        }