diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-01-30 00:04:40 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2014-01-30 00:04:40 -0200 |
commit | 7f584677fc99d77beced5dec9634731ef0d6805c (patch) | |
tree | 63779aa7bc407097e3ace5758551a660624322a7 /libre/lib32-sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch | |
parent | 7c74ceedeecf15b299328cf03f0c7bf498d60cf8 (diff) | |
download | abslibre-7f584677fc99d77beced5dec9634731ef0d6805c.tar.gz abslibre-7f584677fc99d77beced5dec9634731ef0d6805c.tar.bz2 abslibre-7f584677fc99d77beced5dec9634731ef0d6805c.zip |
move lib32-{libclc-svn,{mesa-demos,sdl}-libre} from [libre] to [libre-multilib]
Diffstat (limited to 'libre/lib32-sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch')
-rw-r--r-- | libre/lib32-sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libre/lib32-sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch b/libre/lib32-sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch deleted file mode 100644 index 7d3e5acfc..000000000 --- a/libre/lib32-sdl-libre/sdl-1.2.14-fix-mouse-clicking.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- 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; - |