From 01a4651e574ec95a654ea1bbab85bdb4369a345c Mon Sep 17 00:00:00 2001 From: "Jamie C. Driver" Date: Fri, 22 Mar 2024 09:26:08 +0000 Subject: [PATCH] ui: add to letter/number generic keyboard screens --- main/ui/keyboard.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main/ui/keyboard.c b/main/ui/keyboard.c index 950b3102..f4b93307 100644 --- a/main/ui/keyboard.c +++ b/main/ui/keyboard.c @@ -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] = "[\\]^_`~";