diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-03-18 01:59:53 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-03-18 18:09:21 +0100 |
commit | 03841bd8da948116e4e53ecac7fab6ace06851fd (patch) | |
tree | 78365b1d33f74d46f2109d332315ea3514f3e133 /core/os | |
parent | 756178d34285e48be07f24d6acccbb36dbbd042c (diff) |
Rename the "BackSpace" and "BackTab" key strings to "Backspace"/"Backtab"
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/keyboard.cpp | 4 |
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"}, |