diff options
author | wolfsuit <wolfsuit> | 2005-06-03 19:03:22 (GMT) |
---|---|---|
committer | wolfsuit <wolfsuit> | 2005-06-03 19:03:22 (GMT) |
commit | f95b53973eee5e9a4db55dd31091598297a449b6 (patch) | |
tree | ee77cfda91c6451fa57699f509cc04b5d40910d5 /generic/tkEvent.c | |
parent | b47015e039bd872d4575c1493788ba4d5d675f83 (diff) | |
download | tk-f95b53973eee5e9a4db55dd31091598297a449b6.zip tk-f95b53973eee5e9a4db55dd31091598297a449b6.tar.gz tk-f95b53973eee5e9a4db55dd31091598297a449b6.tar.bz2 |
On Mac OS X scrollwheel events are sent to the window under the mouse, not
to the focus window.
Diffstat (limited to 'generic/tkEvent.c')
-rw-r--r-- | generic/tkEvent.c | 11 |
1 files changed, 8 insertions, 3 deletions
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; } } |