summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2012-05-13 19:09:12 +0200
committerThomas Martitz <kugel@rockbox.org>2012-05-13 19:15:19 +0200
commit8689bcc18635526a8af07c08e18e249ef41a2671 (patch)
treedcd30b1756780b0b6badf51c1b4239ad0c723f64
parent6b8330d2166dc188ec464693bf9db03cf39e8567 (diff)
downloadrockbox-8689bcc18635526a8af07c08e18e249ef41a2671.tar.gz
rockbox-8689bcc18635526a8af07c08e18e249ef41a2671.zip
Touchscreen: Check if click is outside of list. Fixes FS#12669
Change-Id: Ic036f4c399b89c65bdc43bfdf7111bf4a13be484
-rw-r--r--apps/gui/bitmap/list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index 49479c1cb3..0c38132ece 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -740,6 +740,8 @@ unsigned gui_synclist_do_touchscreen(struct gui_synclist * list)
740 line = (adj_y - y_offset) / line_height; 740 line = (adj_y - y_offset) / line_height;
741 if (list_display_title(list, screen)) 741 if (list_display_title(list, screen))
742 line -= 1; /* adjust for the list title */ 742 line -= 1; /* adjust for the list title */
743 if (line >= list->nb_items)
744 return ACTION_NONE;
743 list->selected_item = list_start_item+line; 745 list->selected_item = list_start_item+line;
744 gui_synclist_speak_item(list); 746 gui_synclist_speak_item(list);
745 } 747 }