diff options
| author | Martin Scarratt <mmmm@rockbox.org> | 2006-07-23 15:12:34 +0000 |
|---|---|---|
| committer | Martin Scarratt <mmmm@rockbox.org> | 2006-07-23 15:12:34 +0000 |
| commit | d29c03484bd032cbcb3d509527cb90162d2c4eab (patch) | |
| tree | c642fe58d7563ebab8f013421570f4a0ae1a5fb0 | |
| parent | ffc0cab8167ab0ac5ceb4153cdc545045aed3bce (diff) | |
| download | rockbox-d29c03484bd032cbcb3d509527cb90162d2c4eab.zip rockbox-d29c03484bd032cbcb3d509527cb90162d2c4eab.tar.gz rockbox-d29c03484bd032cbcb3d509527cb90162d2c4eab.tar.bz2 rockbox-d29c03484bd032cbcb3d509527cb90162d2c4eab.tar.xz | |
fix for targets using line edit in virtual keyboard (spotted by freqmod)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10294 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/recorder/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index bf78826..91ed968 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -823,12 +823,12 @@ int kbd_input(char* text, int buflen) { if (param[l].y < param[l].lines - 1) param[l].y++; -#ifndef KBD_MODES else +#ifndef KBD_MODES param[l].y=0;} #else + line_edit = true; } - line_edit = true; } if (!line_edit) #endif |