From 03841bd8da948116e4e53ecac7fab6ace06851fd Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Fri, 18 Mar 2022 01:59:53 +0100 Subject: [PATCH] Rename the "BackSpace" and "BackTab" key strings to "Backspace"/"Backtab" --- core/os/keyboard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/os/keyboard.cpp b/core/os/keyboard.cpp index 3a03c0a10bc..24907d34c8b 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"},