summaryrefslogtreecommitdiff
path: root/libre/sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-09-07 12:29:46 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-09-07 12:29:46 -0300
commitfba1f9077f6d545ad97b66b10b62ff44425a3c68 (patch)
treebe05c977bb3fb4b75cfcce0e13493625adbe17f1 /libre/sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch
parent730bda0e79d3e122d665663a18e0c973d7209236 (diff)
parent3a9ddbf363ba691ca209ad36485390d14ba3b46f (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: libre/abs-libre/PKGBUILD libre/icecat/PKGBUILD libre/libretools/PKGBUILD libre/linux-libre/PKGBUILD libre/mplayer-libre/PKGBUILD libre/pacman/0001-makepkg-fix-removing-symbolic-link.patch libre/pacman/PKGBUILD libre/python2-libre/PKGBUILD
Diffstat (limited to 'libre/sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch')
-rw-r--r--libre/sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/libre/sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch b/libre/sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch
new file mode 100644
index 000000000..7d3e5acfc
--- /dev/null
+++ b/libre/sdl-libre/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;
+