wok-current annotate libsdl/stuff/sdl-1.2.14-fix-disappearing-cursor.patch @ rev 25786
Bump gvfs to fix issue with open files on android device, patch udev to fix mtp issue on pcmanfm
| author | Stanislas Leduc <shann@slitaz.org> |
|---|---|
| date | Tue Jul 29 18:05:13 2025 +0000 (3 months ago) |
| parents | |
| children |
| rev | line source |
|---|---|
| slaxemulator@8513 | 1 Index: SDL-1.2.14/src/video/x11/SDL_x11events.c |
| slaxemulator@8513 | 2 =================================================================== |
| slaxemulator@8513 | 3 --- SDL-1.2.14.orig/src/video/x11/SDL_x11events.c 2010-04-30 09:16:35.000000000 -0400 |
| slaxemulator@8513 | 4 +++ SDL-1.2.14/src/video/x11/SDL_x11events.c 2010-04-30 09:16:35.000000000 -0400 |
| slaxemulator@8513 | 5 @@ -444,8 +444,10 @@ |
| slaxemulator@8513 | 6 if ( xevent.xcrossing.mode == NotifyUngrab ) |
| slaxemulator@8513 | 7 printf("Mode: NotifyUngrab\n"); |
| slaxemulator@8513 | 8 #endif |
| slaxemulator@8513 | 9 - if ( xevent.xcrossing.detail != NotifyInferior ) { |
| slaxemulator@8513 | 10 - if ( this->input_grab == SDL_GRAB_OFF ) { |
| slaxemulator@8513 | 11 + if ( (xevent.xcrossing.mode != NotifyGrab) && |
| slaxemulator@8513 | 12 + (xevent.xcrossing.mode != NotifyUngrab) && |
| slaxemulator@8513 | 13 + (xevent.xcrossing.detail != NotifyInferior) ) { |
| slaxemulator@8513 | 14 + if ( this->input_grab == SDL_GRAB_OFF ) { |
| slaxemulator@8513 | 15 posted = SDL_PrivateAppActive(0, SDL_APPMOUSEFOCUS); |
| slaxemulator@8513 | 16 } else { |
| slaxemulator@8513 | 17 posted = SDL_PrivateMouseMotion(0, 0, |