summaryrefslogtreecommitdiff
path: root/core/os
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2022-03-18 01:59:53 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2022-03-18 18:09:21 +0100
commit03841bd8da948116e4e53ecac7fab6ace06851fd (patch)
tree78365b1d33f74d46f2109d332315ea3514f3e133 /core/os
parent756178d34285e48be07f24d6acccbb36dbbd042c (diff)
Rename the "BackSpace" and "BackTab" key strings to "Backspace"/"Backtab"
Diffstat (limited to 'core/os')
-rw-r--r--core/os/keyboard.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/os/keyboard.cpp b/core/os/keyboard.cpp
index 3a03c0a10b..24907d34c8 100644
--- a/core/os/keyboard.cpp
+++ b/core/os/keyboard.cpp
@@ -41,8 +41,8 @@ static const _KeyCodeText _keycodes[] = {
/* clang-format off */
{Key::ESCAPE ,"Escape"},
{Key::TAB ,"Tab"},
- {Key::BACKTAB ,"BackTab"},
- {Key::BACKSPACE ,"BackSpace"},
+ {Key::BACKTAB ,"Backtab"},
+ {Key::BACKSPACE ,"Backspace"},
{Key::ENTER ,"Enter"},
{Key::KP_ENTER ,"Kp Enter"},
{Key::INSERT ,"Insert"},