summaryrefslogtreecommitdiffstats
path: root/abs/core/sdl/sdl-1.2.14-fix-mouse-clicking.patch
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-12 00:03:19 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-12 00:03:19 (GMT)
commite2886eeefe0079301a1bb61115ac91ccae70ae34 (patch)
treed5da8aeacac6c4a3a50250f64f6d7920b343d9c7 /abs/core/sdl/sdl-1.2.14-fix-mouse-clicking.patch
parent06153c499ff81f57f605f7c7603cf50ac9599c2b (diff)
downloadlinhes_pkgbuild-e2886eeefe0079301a1bb61115ac91ccae70ae34.zip
linhes_pkgbuild-e2886eeefe0079301a1bb61115ac91ccae70ae34.tar.gz
linhes_pkgbuild-e2886eeefe0079301a1bb61115ac91ccae70ae34.tar.bz2
sdl: update latest
Diffstat (limited to 'abs/core/sdl/sdl-1.2.14-fix-mouse-clicking.patch')
-rw-r--r--abs/core/sdl/sdl-1.2.14-fix-mouse-clicking.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core/sdl/sdl-1.2.14-fix-mouse-clicking.patch b/abs/core/sdl/sdl-1.2.14-fix-mouse-clicking.patch
new file mode 100644
index 0000000..7d3e5ac
--- /dev/null
+++ b/abs/core/sdl/sdl-1.2.14-fix-mouse-clicking.patch
@@ -0,0 +1,23 @@
+--- SDL-1.2.14/src/video/x11/SDL_x11events.c.orig 2010-04-08 11:57:05.003169834 -0700
++++ SDL-1.2.14/src/video/x11/SDL_x11events.c 2010-04-08 12:33:51.690926340 -0700
+@@ -423,12 +423,15 @@
+ if ( xevent.xcrossing.mode == NotifyUngrab )
+ printf("Mode: NotifyUngrab\n");
+ #endif
+- if ( this->input_grab == SDL_GRAB_OFF ) {
+- posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
++ if ( (xevent.xcrossing.mode != NotifyGrab) &&
++ (xevent.xcrossing.mode != NotifyUngrab) ) {
++ if ( this->input_grab == SDL_GRAB_OFF ) {
++ posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
++ }
++ posted = SDL_PrivateMouseMotion(0, 0,
++ xevent.xcrossing.x,
++ xevent.xcrossing.y);
+ }
+- posted = SDL_PrivateMouseMotion(0, 0,
+- xevent.xcrossing.x,
+- xevent.xcrossing.y);
+ }
+ break;
+