Project

General

Profile

Feature #1033

Updated by Hammel 8 months ago

do_carousel_drawing() loads images as it needs them.    This can bog down moving through the list.   

 To fix this, readDB() should read the image at the time the db is being created.    It should also scale the icons.   

 To help speed up start time, only the first 50 (or 100 or whatever) should be loaded.    The rest will be loaded in the background with a g_idle_add() timer_exec() function. 

 This will simplify musicfe.c:do_carousel_drawing() by removing the image load section and thus speed up processing.

Back