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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index cfaf03c94a..bbca117bdb 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -167,7 +167,7 @@ int kbd_input(char* text, int buflen)
167 lcd_putsxy(0, 8+i * font_h, line[i]); 167 lcd_putsxy(0, 8+i * font_h, line[i]);
168 168
169 /* separator */ 169 /* separator */
170 lcd_drawline(0, main_y - margin, LCD_WIDTH - 1, main_y - margin); 170 lcd_hline(0, LCD_WIDTH - 1, main_y - margin);
171 171
172 /* write out the text */ 172 /* write out the text */
173 curpos = MIN(editpos, max_chars - MIN(len - editpos, 2)); 173 curpos = MIN(editpos, max_chars - MIN(len - editpos, 2));
@@ -184,7 +184,7 @@ int kbd_input(char* text, int buflen)
184 184
185 /* cursor */ 185 /* cursor */
186 i = (curpos + 1) * font_w; 186 i = (curpos + 1) * font_w;
187 lcd_drawline(i, main_y, i, main_y + font_h); 187 lcd_vline(i, main_y, main_y + font_h);
188 188
189#if CONFIG_KEYPAD == RECORDER_PAD 189#if CONFIG_KEYPAD == RECORDER_PAD
190 /* draw the status bar */ 190 /* draw the status bar */