diff options
| author | Your Name <you@example.com> | 2026-05-18 23:41:19 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-18 23:41:19 +0530 |
| commit | 699fc6c03899c3b1ff853d8c7c6cf32173436354 (patch) | |
| tree | a1dbf26b3d2c6ea3dc12a5c8ee443c00b364bb4d /main/display.c | |
| parent | 9ff7cffcff11237288cfddecee2684f499d23ddf (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.c | 1 |
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; |