summaryrefslogtreecommitdiff
path: root/libre/sdl-libre/sdl-1.2.14-fix-disappearing-cursor.patch
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-09-06 15:07:55 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-09-06 15:07:55 -0300
commitd66e2ddf1eaff25f83d00afdc336c10252f56162 (patch)
treedc6751a2534069809cec7a8538787afc8c83b6c9 /libre/sdl-libre/sdl-1.2.14-fix-disappearing-cursor.patch
parentcbdc1be962cc674c1745435ded78ff1cd22e103f (diff)
libre/sdl-libre-1.2.14-7
Diffstat (limited to 'libre/sdl-libre/sdl-1.2.14-fix-disappearing-cursor.patch')
-rw-r--r--libre/sdl-libre/sdl-1.2.14-fix-disappearing-cursor.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/libre/sdl-libre/sdl-1.2.14-fix-disappearing-cursor.patch b/libre/sdl-libre/sdl-1.2.14-fix-disappearing-cursor.patch
new file mode 100644
index 000000000..fcd3c314d
--- /dev/null
+++ b/libre/sdl-libre/sdl-1.2.14-fix-disappearing-cursor.patch
@@ -0,0 +1,17 @@
+Index: SDL-1.2.14/src/video/x11/SDL_x11events.c
+===================================================================
+--- SDL-1.2.14.orig/src/video/x11/SDL_x11events.c 2010-04-30 09:16:35.000000000 -0400
++++ SDL-1.2.14/src/video/x11/SDL_x11events.c 2010-04-30 09:16:35.000000000 -0400
+@@ -444,8 +444,10 @@
+ if ( xevent.xcrossing.mode == NotifyUngrab )
+ printf("Mode: NotifyUngrab\n");
+ #endif
+- if ( xevent.xcrossing.detail != NotifyInferior ) {
+- if ( this->input_grab == SDL_GRAB_OFF ) {
++ if ( (xevent.xcrossing.mode != NotifyGrab) &&
++ (xevent.xcrossing.mode != NotifyUngrab) &&
++ (xevent.xcrossing.detail != NotifyInferior) ) {
++ if ( this->input_grab == SDL_GRAB_OFF ) {
+ posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS);
+ } else {
+ posted = SDL_PrivateMouseMotion(0, 0,