Hi everyone! I've mentioned this before a while back but didn't get any response and I'm (again) wondering if I could get some help with the listbox, for the games list. When using wheels, the list of games is seamless, without any separation or breaks at the beginning or end. However, when making a games list (without wheels), this doesn't seem to be the case. Here's an example (screenshots below)
What I would like to do is make the games list continuous/seamless without any separation, often implemented in other frontends. Any ideas on how I can fix this? Here's the code from the layout .nut file
// Listbox Name
local l = fe.add_listbox( 1455, 159, 439, 825 );
l.rows = 12;
l.charsize = 27;
l.selbg_alpha = 0;
l.set_selbg_rgb( 100, 100, 100 );
l.set_rgb( 175, 175, 175 );
l.set_sel_rgb( 255, 255, 255 );
l.align = Align.Left;
l.sel_style = Style.Bold;
Any help would be very much appreciated