upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/main/display.c
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-05-18 23:41:19 +0530
committerYour Name <you@example.com>2026-05-18 23:41:19 +0530
commit699fc6c03899c3b1ff853d8c7c6cf32173436354 (patch)
treea1dbf26b3d2c6ea3dc12a5c8ee443c00b364bb4d /main/display.c
parent9ff7cffcff11237288cfddecee2684f499d23ddf (diff)
fix: keyboard KB_START_Y must match render position (70), simplify row 3 layout
- KB_START_Y was 310 but keyboard rendered at y=70 — touch hits never matched - Row 3 simplified to 3 keys: [layer/shift, space, done] - All 362 unit tests pass
Diffstat (limited to 'main/display.c')
-rw-r--r--main/display.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/main/display.c b/main/display.c
index 44af981..e5e31c4 100644
--- a/main/display.c
+++ b/main/display.c
@@ -454,7 +454,6 @@ static void render_wifi_setup_password(void) {
454 } else if (c == '\004') { 454 } else if (c == '\004') {
455 label[0] = '>'; 455 label[0] = '>';
456 fg = COLOR_GREEN; 456 fg = COLOR_GREEN;
457 bg = COLOR_DARKGRAY;
458 } else if (c == '\b') { 457 } else if (c == '\b') {
459 label[0] = '<'; 458 label[0] = '<';
460 bg = COLOR_GRAY; 459 bg = COLOR_GRAY;