# HG changeset patch # User Sam Lantinga # Date 1279609532 25200 # Node ID 4d95152d9e39271ad9fb0ad59364c754f3f60ef9 # Parent cc06f306c053451e880027a15d58b17a1006ef3b Applied the same logic as the fix for bug 894. Anytime we enter the window, we gain the mouse focus. If we leave the window because of a normal LeaveNotify, then we lose mouse focus. diff -r cc06f306c053 -r 4d95152d9e39 src/video/x11/SDL_x11events.c --- a/src/video/x11/SDL_x11events.c Mon Jul 19 23:29:45 2010 -0700 +++ b/src/video/x11/SDL_x11events.c Tue Jul 20 00:05:32 2010 -0700 @@ -25,7 +25,7 @@ #include #include #include -#include /* For INT_MAX */ +#include /* For INT_MAX */ #include "SDL_x11video.h" #include "../../events/SDL_events_c.h" @@ -92,8 +92,8 @@ case EnterNotify:{ #ifdef DEBUG_XEVENTS printf("EnterNotify! (%d,%d,%d)\n", - xevent.xcrossing.x, - xevent.xcrossing.y, + xevent.xcrossing.x, + xevent.xcrossing.y, xevent.xcrossing.mode); if (xevent.xcrossing.mode == NotifyGrab) printf("Mode: NotifyGrab\n"); @@ -108,15 +108,17 @@ case LeaveNotify:{ #ifdef DEBUG_XEVENTS printf("LeaveNotify! (%d,%d,%d)\n", - xevent.xcrossing.x, - xevent.xcrossing.y, + xevent.xcrossing.x, + xevent.xcrossing.y, xevent.xcrossing.mode); if (xevent.xcrossing.mode == NotifyGrab) printf("Mode: NotifyGrab\n"); if (xevent.xcrossing.mode == NotifyUngrab) printf("Mode: NotifyUngrab\n"); #endif - if (xevent.xcrossing.detail != NotifyInferior) { + if (xevent.xcrossing.mode != NotifyGrab && + xevent.xcrossing.mode != NotifyUngrab && + xevent.xcrossing.detail != NotifyInferior) { SDL_SetMouseFocus(NULL); } }