Mercurial > sdl-ios-xcode
comparison src/video/quartz/SDL_QuartzVideo.m @ 816:428f688f2ad2
Date: Fri, 13 Feb 2004 17:03:16 +0100
From: Max Horn
Subject: Modifier key fix
The internal modifier state can get out of sync with reality. To
trigger this, do for example this:
1) Launch an SDL app
2) Alt-click on the desktop (this will hide the SDL app).
3) Bring the SDL app back to the front
4) SDL will still think alt is pressed (and as such will treat left
clicks like middle clicks). If you press and release alt, it'll be fine
again.
The attached patch cures this by rechecking the modifier state whenever
we process an event.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 13 Feb 2004 17:57:16 +0000 |
parents | 68c8da837fc0 |
children | d67e76f25874 |
comparison
equal
deleted
inserted
replaced
815:6176f9a0d61a | 816:428f688f2ad2 |
---|---|
201 | 201 |
202 /* Set misc globals */ | 202 /* Set misc globals */ |
203 current_grab_mode = SDL_GRAB_OFF; | 203 current_grab_mode = SDL_GRAB_OFF; |
204 cursor_should_be_visible = YES; | 204 cursor_should_be_visible = YES; |
205 cursor_visible = YES; | 205 cursor_visible = YES; |
206 current_mods = -1; | |
206 | 207 |
207 /* register for sleep notifications so wake from sleep generates SDL_VIDEOEXPOSE */ | 208 /* register for sleep notifications so wake from sleep generates SDL_VIDEOEXPOSE */ |
208 QZ_RegisterForSleepNotifications (this); | 209 QZ_RegisterForSleepNotifications (this); |
209 | 210 |
210 return 0; | 211 return 0; |