diff options
author | Thomas Martitz <kugel@rockbox.org> | 2012-04-05 13:00:05 +0200 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2012-04-05 15:01:59 +0200 |
commit | bb0e4cc543e4c7bed6dff3a41d092b6867632535 (patch) | |
tree | a62dca3c50fa09cfe609df088e9eee9bf2ac2853 /apps/gui | |
parent | f458888a4c4fd8601ff4690388e2fc06fecb9fc2 (diff) |
touchscreen: Fix kinetic scrolling when the statusbar is off.
The scrolling code cannot differentiate between the BUTTON_TOUCHSCREEN post
from normal touches and the one posted in the timeout callback.
To fix introduce a global special button (BUTTON_REDRAW) that results
in the desired redraw. This existed already as a local kludge for android
and is now generalized.
Change-Id: I6bfa6c66431c48f5042fcd8fce2ea72cd3457f58
Diffstat (limited to 'apps/gui')
-rw-r--r-- | apps/gui/bitmap/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c index 09a66f3386..2f13d8ba53 100644 --- a/apps/gui/bitmap/list.c +++ b/apps/gui/bitmap/list.c @@ -587,7 +587,7 @@ static int kinetic_callback(struct timeout *tmo) data->velocity = 0; } - queue_post(&button_queue, BUTTON_TOUCHSCREEN, 0); + queue_post(&button_queue, BUTTON_REDRAW, 0); /* stop if the velocity hit or crossed zero */ if (!data->velocity) { |