mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
Add ability to type a space with the input keyboard by long-pressing "_" (#1550)
Co-authored-by: Mayco <tristan@polymerprints.nl> Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
parent
173c94156d
commit
81b404aafa
1 changed files with 3 additions and 1 deletions
|
@ -131,7 +131,9 @@ static bool char_is_lowercase(char letter) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static char char_to_uppercase(const char letter) {
|
static char char_to_uppercase(const char letter) {
|
||||||
if(isalpha(letter)) {
|
if(letter == '_') {
|
||||||
|
return 0x20;
|
||||||
|
} else if(isalpha(letter)) {
|
||||||
return (letter - 0x20);
|
return (letter - 0x20);
|
||||||
} else {
|
} else {
|
||||||
return letter;
|
return letter;
|
||||||
|
|
Loading…
Reference in a new issue