mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 15:05:54 +00:00
[KBDGR] - 1, 4, 5 keys should support CAPSLOCK.
See issue #5296 for more details. svn path=/trunk/; revision=54013
This commit is contained in:
parent
68cfb4ea83
commit
6b2108b368
1 changed files with 4 additions and 4 deletions
|
@ -165,10 +165,10 @@ ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
|
|||
{ 0xff, 0, {'^', WCH_NONE} }, // FIXME - why doesn't this work?
|
||||
/* Normal vs Shifted */
|
||||
/* The numbers */
|
||||
{ '1', 0, {'1', '!'} },
|
||||
{ '1', CAPLOK, {'1', '!'} },
|
||||
/* Ctrl-2 generates NUL */
|
||||
{ '4', 0, {'4', '$'} },
|
||||
{ '5', 0, {'5', '%'} },
|
||||
{ '4', CAPLOK, {'4', '$'} },
|
||||
{ '5', CAPLOK, {'5', '%'} },
|
||||
|
||||
{ VK_OEM_6, 0, {WCH_DEAD, WCH_DEAD} },
|
||||
{ 0xff, 0, {0xb4, '`'} },
|
||||
|
@ -215,7 +215,7 @@ ROSDATA VK_TO_WCHARS2 key_to_chars_2mod[] = {
|
|||
};
|
||||
|
||||
ROSDATA VK_TO_WCHARS3 key_to_chars_3mod[] = {
|
||||
/* Normal, Shifted, Ctrl */
|
||||
/* Normal, Shifted, Ctrl+Alt */
|
||||
/* Legacy (telnet-style) ascii escapes */
|
||||
{ '3', CAPLOK, {'3', 0xa7, 0xb3} },
|
||||
{ '7', CAPLOK, {'7', '/', '{'} },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue