diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2006-10-21 10:00:30 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2006-10-21 10:00:30 +0000 |
| commit | b8114738ece75b985e3658adb6860bceddf0cf51 (patch) | |
| tree | 0cd6aa330eb0cd89df06e0e57aedc01747e0b1e2 /apps | |
| parent | 78817421a2ef4ee78ead36f54f08e5079ad42db9 (diff) | |
| download | rockbox-b8114738ece75b985e3658adb6860bceddf0cf51.zip rockbox-b8114738ece75b985e3658adb6860bceddf0cf51.tar.gz rockbox-b8114738ece75b985e3658adb6860bceddf0cf51.tar.bz2 rockbox-b8114738ece75b985e3658adb6860bceddf0cf51.tar.xz | |
add signalscreenchange() to vkeyboard
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11287 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/recorder/keyboard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index 7878760..1cd5d6b 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -7,7 +7,7 @@ * \/ \/ \/ \/ \/ * $Id$ * - * Copyright (C) 2002 by Björn Stenberg + * Copyright (C) 2002 by Bj�n Stenberg * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. @@ -429,6 +429,7 @@ int kbd_input(char* text, int buflen) if (global_settings.talk_menu) /* voice UI? */ talk_spell(text, true); /* spell initial text */ + action_signalscreenchange(); while(!done) { len_utf8 = utf8length(text); @@ -1001,6 +1002,7 @@ int kbd_input(char* text, int buflen) cur_blink = true; } } + action_signalscreenchange(); #ifdef HAS_BUTTONBAR global_settings.buttonbar=buttonbar_config; #endif |