Skip to content

Commit

Permalink
ui: add <space> to letter/number generic keyboard screens
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieDriver committed Mar 27, 2024
1 parent 1546604 commit 01a4651
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main/ui/keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ static void make_keyboard_screen(link_activity_t* kb_screen_activity, const char
// and are buttons for 'backspace', 'shift/next kb', and 'enter/done' (see below)
if (kb_type == KB_LOWER_CASE_CHARS) {
lines[0] = "abcdefghij";
lines[1] = "klmnopqrs";
lines[2] = "tuvwxyz|>S";
lines[1] = "klmnopqrst";
lines[2] = "uvwxyz |>S";
// 'sizes' ok
} else if (kb_type == KB_UPPER_CASE_CHARS) {
lines[0] = "ABCDEFGHIJ";
lines[1] = "KLMNOPQRS";
lines[2] = "TUVWXYZ|>S";
lines[1] = "KLMNOPQRST";
lines[2] = "UVWXYZ |>S";
// 'sizes' ok
} else if (kb_type == KB_NUMBERS_SYMBOLS) {
lines[0] = "1234567890";
lines[1] = "!\"#$%&'()";
lines[2] = "*+,-./|>S";
lines[2] = "*+,-./ |>S";
} else if (kb_type == KB_REMAINING_SYMBOLS) {
lines[0] = ":;<=>?@";
lines[1] = "[\\]^_`~";
Expand Down

0 comments on commit 01a4651

Please sign in to comment.