diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-03-18 19:23:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 19:23:21 +0100 |
commit | 46472ea78e881863f9a3ba0aa4183e85c747a370 (patch) | |
tree | fcb8c7fd0530ec35f6788ecdc1550642fb37bca5 /core/os | |
parent | 19950076b1edbd924b64ed41d27a5239ca0c1a7b (diff) | |
parent | 03841bd8da948116e4e53ecac7fab6ace06851fd (diff) |
Merge pull request #59257 from Calinou/key-name-backspace
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"}, |