diff options
-rw-r--r-- | ChangeLog | 20 | ||||
-rw-r--r-- | generic/tkEvent.c | 11 |
2 files changed, 20 insertions, 11 deletions
@@ -1,13 +1,17 @@ 2005-06-02 Jim Ingham <jingham@apple.com> - Another patch from M. Kirkham. - - * macosx/tkMacOSXScrlbr.c (ThumbActionProc, ScrollBarBindProc): - Record the first mouse down point, and compute differences from - that, rather than getting the mouse down each time through the - loop. The old method would get fooled if you moved the mouse less - than a text line height in the text widget. - [Bug 1083728] + * generic/tkEvent.c (InvokeFocusHandlers): On Mac OS X the + scrollwheel events are sent to the window under the mouse, + not to the focus window. + + Another patch from M. Kirkham. + + * macosx/tkMacOSXScrlbr.c (ThumbActionProc, ScrollBarBindProc): + Record the first mouse down point, and compute differences from + that, rather than getting the mouse down each time through the + loop. The old method would get fooled if you moved the mouse less + than a text line height in the text widget. + [Bug 1083728] 2005-06-03 Daniel Steffen <das@users.sourceforge.net> diff --git a/generic/tkEvent.c b/generic/tkEvent.c index adad3ed..388fa49 100644 --- a/generic/tkEvent.c +++ b/generic/tkEvent.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkEvent.c,v 1.27 2005/03/14 01:59:04 dkf Exp $ + * RCS: @(#) $Id: tkEvent.c,v 1.28 2005/06/03 19:03:23 wolfsuit Exp $ */ #include "tkPort.h" @@ -265,11 +265,16 @@ InvokeFocusHandlers(winPtrPtr, mask, eventPtr) return 1; } - if (mask & (KeyPressMask|KeyReleaseMask|MouseWheelMask)) { +#ifdef MAC_OSX_TK + /* MouseWheel events are not focus specific on Mac OS X */ + if (mask & (KeyPressMask|KeyReleaseMask)) { +#else + if (mask & (KeyPressMask|KeyReleaseMask|MouseWheelMask)) { +#endif (*winPtrPtr)->dispPtr->lastEventTime = eventPtr->xkey.time; *winPtrPtr = TkFocusKeyEvent(*winPtrPtr, eventPtr); if (*winPtrPtr == NULL) { - return 1; + return 1; } } |