summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-09-05 14:38:35 +0000
committerThomas Martitz <kugel@rockbox.org>2009-09-05 14:38:35 +0000
commit50c3c76b13daa7f381217ac8564834ede59576f8 (patch)
tree4719389782a8e34b124c4d1746d544b902b39296 /apps
parent42e6638420ea1480532db72fb5f8766d1c6bed50 (diff)
downloadrockbox-50c3c76b13daa7f381217ac8564834ede59576f8.tar.gz
rockbox-50c3c76b13daa7f381217ac8564834ede59576f8.zip
Fix FS#10588 by stopping scrolling in the radio screen instead of blindy relying on list code (which doesn't just stop scrolling entirely for the whole screen anymore).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22632 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/radio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index 31610a363e..c98f0f621d 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -1083,7 +1083,8 @@ int radio_screen(void)
1083#ifndef HAVE_NOISY_IDLE_MODE 1083#ifndef HAVE_NOISY_IDLE_MODE
1084 cpu_idle_mode(false); 1084 cpu_idle_mode(false);
1085#endif 1085#endif
1086 1086 FOR_NB_SCREENS(i)
1087 screens[i].scroll_stop(&vp[i]);
1087 viewportmanager_set_statusbar(oldbars); 1088 viewportmanager_set_statusbar(oldbars);
1088 in_screen = false; 1089 in_screen = false;
1089#if CONFIG_CODEC != SWCODEC 1090#if CONFIG_CODEC != SWCODEC