diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-01-22 22:19:27 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-01-22 22:19:27 +0100 |
commit | 44320491c65e265b47282ae3053f5a031f5e740d (patch) | |
tree | b091c3693799a79216d0e014f15c228005dd8346 /src/window | |
parent | 227b96247baeec7a3f44cf82c4560f2aca282c16 (diff) |
m
Diffstat (limited to 'src/window')
-rw-r--r-- | src/window/key.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/window/key.c b/src/window/key.c index ecddf0e..8cdce24 100644 --- a/src/window/key.c +++ b/src/window/key.c @@ -41,14 +41,14 @@ const char* mgl_key_to_string(mgl_key key) { case MGL_KEY_NUM8: return "8"; case MGL_KEY_NUM9: return "9"; case MGL_KEY_ESCAPE: return "Escape"; - case MGL_KEY_LCONTROL: return "Left ctrl"; - case MGL_KEY_LSHIFT: return "Left shift"; - case MGL_KEY_LALT: return "Left alt"; - case MGL_KEY_LSYSTEM: return "Left system"; - case MGL_KEY_RCONTROL: return "Right ctrl"; - case MGL_KEY_RSHIFT: return "Right shift"; - case MGL_KEY_RALT: return "Right alt"; - case MGL_KEY_RSYSTEM: return "Right system"; + case MGL_KEY_LCONTROL: return "Left Ctrl"; + case MGL_KEY_LSHIFT: return "Left Shift"; + case MGL_KEY_LALT: return "Left Alt"; + case MGL_KEY_LSYSTEM: return "Left System"; + case MGL_KEY_RCONTROL: return "Right Ctrl"; + case MGL_KEY_RSHIFT: return "Right Shift"; + case MGL_KEY_RALT: return "Right Alt"; + case MGL_KEY_RSYSTEM: return "Right System"; case MGL_KEY_MENU: return "Menu"; case MGL_KEY_LBRACKET: return "["; case MGL_KEY_RBRACKET: return "]"; |