Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Touchscreen: absolute point mode scrolling bugfix

Due to this inadequate bounds check, it was possible under certain
conditions to cause a crash by touching & scrolling in the empty
space "after" the last item of a list.

Change-Id: Ic6c30214d887e1c7ccb212de272248ca24f60856

+1 -1
+1 -1
apps/gui/bitmap/list.c
··· 734 734 if (list_display_title(list, screen)) 735 735 line -= 1; /* adjust for the list title */ 736 736 } 737 - if (line >= list->nb_items) 737 + if (list_start_item+line >= list->nb_items) 738 738 return ACTION_NONE; 739 739 list->selected_item = list_start_item+line; 740 740