diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-02-02 18:39:04 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-02-02 18:39:04 +0000 |
| commit | b22b0dc1011c61bc1d6dc73215280fb69503c0e8 (patch) | |
| tree | 7216cd6d9ce7527da2f8557354a24fb4b2e374b8 /apps/gui/bitmap | |
| parent | 430ada08644336c3811c6188f1a1d91b1614efc2 (diff) | |
| download | rockbox-b22b0dc1011c61bc1d6dc73215280fb69503c0e8.zip rockbox-b22b0dc1011c61bc1d6dc73215280fb69503c0e8.tar.gz rockbox-b22b0dc1011c61bc1d6dc73215280fb69503c0e8.tar.bz2 rockbox-b22b0dc1011c61bc1d6dc73215280fb69503c0e8.tar.xz | |
Touchscreen: Fix minor redraw after entering the context menu.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29193 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/bitmap')
| -rw-r--r-- | apps/gui/bitmap/list.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c index 2050043..7ad59b9 100644 --- a/apps/gui/bitmap/list.c +++ b/apps/gui/bitmap/list.c @@ -798,7 +798,10 @@ unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list) gui_list->selected_item = list_start_item+line; gui_synclist_speak_item(gui_list); if (last_position == 0) + { + redraw = true; last_position = actual_y; + } else { /* record speed data in case we do kinetic scrolling */ |