annotate BUGS @ 4170:092c0bc69155 SDL-1.2

Fixed bug #618 Description From Tim Angus 2008-08-30 12:23:56 (-) [reply] As we all know SDL 1.2 doesn't handle dead keys well since one key press potentially equals two (or more) characters. For example, on many layouts, keying <backquote>,<space> results in <no character>,<backquote><space>. Since the unicode member of the SDL_keysym struct only has room for one character, only one can be returned. On Linux, the first character is returned. On Windows however, unless the exact number of characters generated by the keypress is 1, nothing is returned. The following patch addresses this inconsistency. Updated patch which includes a further fix to the handling of the numpad when numlock is on. This further fix is courtesy Amanieu d'Antras.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 13 Apr 2009 08:42:09 +0000
parents 89b0f3d12fe2
children
rev   line source
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
1
3915
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
2 Bugs are now managed in the SDL bug tracker, here:
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
3
3915
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
4 http://bugzilla.libsdl.org/
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
5
3915
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
6 You may report bugs there, and search to see if a given issue has already
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
7 been reported, discussed, and maybe even fixed.
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
8
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
9
27
a7e598a8d8be The keyboard modifiers are not set to the correct state on X11 startup.
Sam Lantinga <slouken@lokigames.com>
parents: 21
diff changeset
10
3915
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
11 You may also find help at the SDL mailing list. Subscription information:
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
12
3915
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
13 http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org
250
74a8f672f2f8 Added support for building SDL for EPOC/SymbianOS 6.0 (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents: 172
diff changeset
14
3915
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
15 Bug reports are welcome here, but we really appreciate if you use Bugzilla, as
89b0f3d12fe2 Removed the contents of the BUGS file, as most (all?) of the issues were
Ryan C. Gordon <icculus@icculus.org>
parents: 3888
diff changeset
16 bugs discussed on the mailing list may be forgotten or missed.
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
17
27
a7e598a8d8be The keyboard modifiers are not set to the correct state on X11 startup.
Sam Lantinga <slouken@lokigames.com>
parents: 21
diff changeset
18