From cd184fa0a81211827cd0bdfe39ad4adac7a859fb Mon Sep 17 00:00:00 2001 From: a_kovalenko Date: Tue, 25 Nov 2003 08:45:30 +0000 Subject: Corrected targetWinPtr check, now if winPtr==0 and targetWinPtr!=0 then the event is not ignored any more --- ChangeLog | 6 ++++++ generic/tkPointer.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 238519e..4859d8c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-11-25 Anton Kovalenko + + * generic/tkPointer.c (Tk_UpdatePointer): corrected targetWinPtr + check (line 369) so any pointer event with winPtr==0 + is really redirected to the grab or restrict window (if any). + 2003-11-21 Vince Darley * generic/tkTextDisp.c: diff --git a/generic/tkPointer.c b/generic/tkPointer.c index 06e54ff..2c686d6 100644 --- a/generic/tkPointer.c +++ b/generic/tkPointer.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkPointer.c,v 1.7 2002/08/31 06:12:25 das Exp $ + * RCS: @(#) $Id: tkPointer.c,v 1.8 2003/11/25 08:45:30 a_kovalenko Exp $ */ #include "tkInt.h" @@ -366,7 +366,7 @@ Tk_UpdatePointer(tkwin, x, y, state) * If we still have a target window, send the event. */ - if (winPtr != NULL) { + if (targetWinPtr != NULL) { InitializeEvent(&event, targetWinPtr, type, x, y, tsdPtr->lastState, b); Tk_QueueWindowEvent(&event, TCL_QUEUE_TAIL); -- cgit v0.12