1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

Kernel: Make the right shift key work.

I never realized the right shift key wasn't hooked up since my left pinky
always hovers over the left shift key, ready to rock.
This commit is contained in:
Andreas Kling 2019-04-23 20:47:45 +02:00
parent f520d87097
commit f042b3adeb
2 changed files with 24 additions and 10 deletions

View file

@ -20,7 +20,8 @@ enum KeyCode : byte {
Key_Down,
Key_PageUp,
Key_PageDown,
Key_Shift,
Key_LeftShift,
Key_RightShift,
Key_Control,
Key_Alt,
Key_CapsLock,
@ -108,6 +109,8 @@ enum KeyCode : byte {
Key_Tilde,
Key_Backtick,
Key_Logo,
Key_Shift = Key_LeftShift,
};
enum KeyModifier {