diff src/video/x11/SDL_x11events.c @ 3188:102b7880543a

Whoops, didn't mean to commit unfinished patch
author Sam Lantinga <slouken@libsdl.org>
date Wed, 10 Jun 2009 13:46:54 +0000
parents 51750b7a966f
children 08747e24a50f
line wrap: on
line diff
--- a/src/video/x11/SDL_x11events.c	Wed Jun 10 13:38:19 2009 +0000
+++ b/src/video/x11/SDL_x11events.c	Wed Jun 10 13:46:54 2009 +0000
@@ -339,7 +339,6 @@
                 if (xevent.type == data->proximity_in) {
                     XProximityNotifyEvent *proximity =
                         (XProximityNotifyEvent *) & xevent;
-                    SDL_SetMouseFocus(proximity->deviceid, data->windowID);
                     SDL_SendProximity(proximity->deviceid, proximity->x,
                                       proximity->y, SDL_PROXIMITYIN);
                     return;
@@ -347,7 +346,6 @@
                 if (xevent.type == data->proximity_out) {
                     XProximityNotifyEvent *proximity =
                         (XProximityNotifyEvent *) & xevent;
-                    SDL_SetMouseFocus(proximity->deviceid, data->windowID);
                     SDL_SendProximity(proximity->deviceid, proximity->x,
                                       proximity->y, SDL_PROXIMITYOUT);
                     return;