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.

scroll engine, allow clipped text in viewport

loosen the requirements on the scroll viewport allow clipped text

Change-Id: I7099d423ccfbd7bae12e6ba43b8a6b4b864175b7

authored by

William Wilgus and committed by
William Wilgus
a62fdf47 3a89fdee

+3 -2
+3 -2
firmware/drivers/lcd-bitmap-common.c
··· 511 511 x = x * (linebased ? cwidth : 1); 512 512 width = vp->width - x; 513 513 514 - if (y >= vp->height || (height + y) > (vp->height)) 514 + if (y >= vp->height) 515 515 return false; 516 - 516 + if ((height + y) > (vp->height)) 517 + height = vp->height - y; 517 518 s = find_scrolling_line(x, y); 518 519 restart = !s; 519 520