diff options
| author | Teruaki Kawashima <teru@rockbox.org> | 2010-02-11 10:41:06 +0000 |
|---|---|---|
| committer | Teruaki Kawashima <teru@rockbox.org> | 2010-02-11 10:41:06 +0000 |
| commit | 93f9e7cbfb3905791feccb4da68f6cc969d1e148 (patch) | |
| tree | fb6e01220844fa1c0a9f92643ccaddb70fcb66b4 /apps/gui/charcell | |
| parent | 0a291fff12c27ba6b46521ecaf126bdb4726c24e (diff) | |
| download | rockbox-93f9e7cbfb3905791feccb4da68f6cc969d1e148.zip rockbox-93f9e7cbfb3905791feccb4da68f6cc969d1e148.tar.gz rockbox-93f9e7cbfb3905791feccb4da68f6cc969d1e148.tar.bz2 rockbox-93f9e7cbfb3905791feccb4da68f6cc969d1e148.tar.xz | |
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
Diffstat (limited to 'apps/gui/charcell')
| -rw-r--r-- | apps/gui/charcell/list.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/gui/charcell/list.c b/apps/gui/charcell/list.c index 2374156..220144c 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; |