mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 12:35:14 +00:00
Keyboard: Shift+backspace should generate backspace character.
This commit is contained in:
parent
8fa7d96f50
commit
d059e684a2
Notes:
sideshowbarker
2024-07-19 15:56:55 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/d059e684a28
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ static char map[0x80] =
|
|||
|
||||
static char shift_map[0x80] =
|
||||
{
|
||||
0, '\033', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', 0, 0,
|
||||
0, '\033', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', 0x08, 0,
|
||||
'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', '{', '}', '\n', 0,
|
||||
'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', ':', '"', '~', 0, '|',
|
||||
'Z', 'X', 'C', 'V', 'B', 'N', 'M', '<', '>', '?',
|
||||
|
|
Loading…
Add table
Reference in a new issue