mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 21:54:40 +03:00
Keyboard should support the space character (jeez!)
This commit is contained in:
parent
260b14e505
commit
82bbfa8496
Notes:
sideshowbarker
2024-07-19 18:38:57 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/82bbfa84966
@ -25,6 +25,7 @@ static char map[0x100] =
|
||||
'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', '[', ']', 0, 0,
|
||||
'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', ';', '\'', '`', 0, '\\',
|
||||
'z', 'x', 'c', 'v', 'b', 'n', 'm', ',', '.', '/',
|
||||
0, 0, 0, ' '
|
||||
};
|
||||
|
||||
static char shift_map[0x100] =
|
||||
@ -33,6 +34,7 @@ static char shift_map[0x100] =
|
||||
'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', '{', '}', 0, 0,
|
||||
'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', ':', '"', '~', 0, '|',
|
||||
'Z', 'X', 'C', 'V', 'B', 'N', 'M', '<', '>', '?',
|
||||
0, 0, 0, ' '
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user