forked from len0rd/rockbox
Fix a display bug with the tracklist in Picture Flow. Thanks to Thomas Schott.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18537 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
017c25cdc1
commit
67def0b18c
1 changed files with 4 additions and 5 deletions
|
|
@ -1799,11 +1799,10 @@ void show_track_list(void)
|
||||||
rb->lcd_getstringsize(albumtxt, NULL, &albumtxt_h);
|
rb->lcd_getstringsize(albumtxt, NULL, &albumtxt_h);
|
||||||
titletxt_y = ((LCD_HEIGHT-albumtxt_h-10)-(track_count*albumtxt_h))/2;
|
titletxt_y = ((LCD_HEIGHT-albumtxt_h-10)-(track_count*albumtxt_h))/2;
|
||||||
}
|
}
|
||||||
|
else if (config.show_fps)
|
||||||
|
titletxt_y = titletxt_h + 5;
|
||||||
else
|
else
|
||||||
{
|
titletxt_y = 0;
|
||||||
if (config.show_fps)
|
|
||||||
titletxt_y = titletxt_h + 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
int track_i;
|
int track_i;
|
||||||
for (i=0; i < track_list_visible_entries; i++) {
|
for (i=0; i < track_list_visible_entries; i++) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue