diff options
Diffstat (limited to 'macosx/tkMacOSXWindowEvent.c')
-rw-r--r-- | macosx/tkMacOSXWindowEvent.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/macosx/tkMacOSXWindowEvent.c b/macosx/tkMacOSXWindowEvent.c index d21d1f1..af3619b 100644 --- a/macosx/tkMacOSXWindowEvent.c +++ b/macosx/tkMacOSXWindowEvent.c @@ -101,7 +101,6 @@ TkMacOSXProcessApplicationEvent( TkMacOSXEvent *eventPtr, MacEventStatus *statusPtr) { - statusPtr->handledByTk = 1; switch (eventPtr->eKind) { case kEventAppActivated: tkMacOSXAppInFront = true; @@ -155,11 +154,9 @@ TkMacOSXProcessWindowEvent( case kEventWindowUpdate: break; default: - statusPtr->handledByTk = 1; return 0; break; } - statusPtr->handledByTk = 1; status = GetEventParameter(eventPtr->eventRef, kEventParamDirectObject, typeWindowRef, NULL, @@ -184,8 +181,6 @@ TkMacOSXProcessWindowEvent( case kEventWindowUpdate: if (GenerateUpdateEvent(window)) { eventFound = true; - } else { - statusPtr->handledByTk = 0; } break; } @@ -690,4 +685,4 @@ int Tk_MacOSXIsAppInFront (void) { return tkMacOSXAppInFront; -}
\ No newline at end of file +} |