summaryrefslogtreecommitdiffstats
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
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
-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)
#ifndef HAVE_NOISY_IDLE_MODE
cpu_idle_mode(false);
#endif
-
+ FOR_NB_SCREENS(i)
+ screens[i].scroll_stop(&vp[i]);
viewportmanager_set_statusbar(oldbars);
in_screen = false;
#if CONFIG_CODEC != SWCODEC