summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarianne Arnold <pixelma@rockbox.org>2010-06-06 08:43:02 +0000
committerMarianne Arnold <pixelma@rockbox.org>2010-06-06 08:43:02 +0000
commite1a0e2cd7ae6337b8add4fd8c5c87924a94cf169 (patch)
treec6a408ddf1d29344903edcca80df138a6603ad79
parentb8d98fcc1991a60ec1cde475b68fcda67153528b (diff)
downloadrockbox-e1a0e2cd7ae6337b8add4fd8c5c87924a94cf169.tar.gz
rockbox-e1a0e2cd7ae6337b8add4fd8c5c87924a94cf169.zip
Virtual keyboard: enable line edit mode as an alternative on all target. There were only a very few that didn't offer it yet. The KBD_MODES define could be removed too now but I leave that to someone else. ;)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26612 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/keyboard.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index f8b390d932..e4632bbc6c 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -59,20 +59,10 @@
59/* no key combos to move the cursor if not in line edit mode */ 59/* no key combos to move the cursor if not in line edit mode */
60#define KBD_MODES /* uses 2 modes, picker and line edit */ 60#define KBD_MODES /* uses 2 modes, picker and line edit */
61 61
62#elif (CONFIG_KEYPAD == IRIVER_H100_PAD) \ 62#else
63 || (CONFIG_KEYPAD == IRIVER_H300_PAD) \
64 || (CONFIG_KEYPAD == GIGABEAT_PAD) \
65 || (CONFIG_KEYPAD == GIGABEAT_S_PAD) \
66 || (CONFIG_KEYPAD == SANSA_E200_PAD) \
67 || (CONFIG_KEYPAD == SANSA_FUZE_PAD) \
68 || (CONFIG_KEYPAD == SANSA_C200_PAD) \
69 || (CONFIG_KEYPAD == SAMSUNG_YH_PAD)
70/* certain key combos move the cursor even if not in line edit mode */ 63/* certain key combos move the cursor even if not in line edit mode */
71#define KBD_CURSOR_KEYS 64#define KBD_CURSOR_KEYS
72#define KBD_MODES /* uses 2 modes, picker and line edit */ 65#define KBD_MODES /* uses 2 modes, picker and line edit */
73
74#else
75#define KBD_CURSOR_KEYS /* certain keys move the cursor, no line edit mode */
76#endif 66#endif
77 67
78#if (CONFIG_KEYPAD == IRIVER_H100_PAD) \ 68#if (CONFIG_KEYPAD == IRIVER_H100_PAD) \