From 93f9e7cbfb3905791feccb4da68f6cc969d1e148 Mon Sep 17 00:00:00 2001 From: Teruaki Kawashima Date: Thu, 11 Feb 2010 10:41:06 +0000 Subject: fix text scrolling handling in do_menu, set_time_screen and time_screen. Don't scroll text in time_screen(). the lines will be redrawn before scrolling statrs, so they don't scroll anyway. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24591 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/charcell/list.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'apps/gui/charcell/list.c') diff --git a/apps/gui/charcell/list.c b/apps/gui/charcell/list.c index 2374156f0b..220144c356 100644 --- a/apps/gui/charcell/list.c +++ b/apps/gui/charcell/list.c @@ -39,6 +39,16 @@ #include "sound.h" #include "misc.h" +void gui_synclist_scroll_stop(struct gui_synclist *lists) +{ + int i; + (void)lists; + FOR_NB_SCREENS(i) + { + screens[i].stop_scroll(); + } +} + void list_draw(struct screen *display, struct gui_synclist *gui_list) { int text_pos; -- cgit v1.2.3