Make loading of poster images async

This commit is contained in:
Reinout Meliesie 2025-02-05 13:51:22 +01:00
commit 547a811acf
Signed by: zedfrigg
GPG key ID: 3AFCC06481308BC6
4 changed files with 41 additions and 41 deletions

View file

@ -45,7 +45,7 @@ fn show_window ( app : & Application ) {
async {
let data_manager = DataManager :: new () . await ? ;
let collection = data_manager . get_collection_overview () . await ;
ui . render_collection_overview (collection) ;
ui . render_collection_overview (collection) . await ;
Ok (())
} ,
|error| {