diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-28 12:11:35 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-08-28 12:11:35 +0200 |
commit | cd5c0076286641b65cd95784eee3ac9e76b692b0 (patch) | |
tree | 10d0f02f513fafbdd566b03a46db496f80ef8841 /core/os/keyboard.cpp | |
parent | fc37fd7b9813486174dce96fcf200ff87def623d (diff) | |
parent | 8908ac4e6e53daa4b0a43269757b082704740251 (diff) | |
download | redot-engine-cd5c0076286641b65cd95784eee3ac9e76b692b0.tar.gz |
Merge pull request #81054 from AttackButton/core-os-keyboard_cpp
Add missing YEN, SECTION and OPENURL names to keycode mappings
Diffstat (limited to 'core/os/keyboard.cpp')
-rw-r--r-- | core/os/keyboard.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/os/keyboard.cpp b/core/os/keyboard.cpp index 1a51624030..6078882839 100644 --- a/core/os/keyboard.cpp +++ b/core/os/keyboard.cpp @@ -146,6 +146,7 @@ static const _KeyCodeText _keycodes[] = { {Key::FAVORITES ,"Favorites"}, {Key::SEARCH ,"Search"}, {Key::STANDBY ,"StandBy"}, + {Key::OPENURL ,"OpenURL"}, {Key::LAUNCHMAIL ,"LaunchMail"}, {Key::LAUNCHMEDIA ,"LaunchMedia"}, {Key::LAUNCH0 ,"Launch0"}, @@ -238,6 +239,8 @@ static const _KeyCodeText _keycodes[] = { {Key::BAR ,"Bar"}, {Key::BRACERIGHT ,"BraceRight"}, {Key::ASCIITILDE ,"AsciiTilde"}, + {Key::YEN ,"Yen"}, + {Key::SECTION ,"Section"}, {Key::NONE ,nullptr} /* clang-format on */ }; |