summaryrefslogtreecommitdiff
path: root/apps/recorder/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/keyboard.c')
-rw-r--r--apps/recorder/keyboard.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index d974752b84..cfaf03c94a 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -195,8 +195,12 @@ int kbd_input(char* text, int buflen)
195#ifdef KBD_MODES 195#ifdef KBD_MODES
196 if (!line_edit) 196 if (!line_edit)
197#endif 197#endif
198 {
198 /* highlight the key that has focus */ 199 /* highlight the key that has focus */
199 lcd_invertrect(font_w * x, 8 + font_h * y, font_w, font_h); 200 lcd_set_drawmode(DRMODE_COMPLEMENT);
201 lcd_fillrect(font_w * x, 8 + font_h * y, font_w, font_h);
202 lcd_set_drawmode(DRMODE_SOLID);
203 }
200 204
201 status_draw(true); 205 status_draw(true);
202 206