library is showing items and searching is working again

This commit is contained in:
Chris Cochrun 2024-09-13 14:01:06 -05:00
parent b61e05a423
commit f197099346
4 changed files with 106 additions and 43 deletions

View file

@ -179,10 +179,22 @@ Controls.Page {
/* ImageProxyModel { id: imageProxyModel } */
/* PresentationProxyModel { id: presProxyModel } */
/* VideoProxyModel { id: videoProxyModel } */
SongModel { id: songModel }
VideoModel { id: videoModel }
PresentationModel { id: presentationModel }
ImageModel { id: imageModel }
SongModel {
id: songModel
Component.onCompleted: setup();
}
VideoModel {
id: videoModel
Component.onCompleted: setup();
}
PresentationModel {
id: presentationModel
Component.onCompleted: setup();
}
ImageModel {
id: imageModel
Component.onCompleted: setup();
}
ServiceThing { id: serviceThing }
FileHelper { id: fileHelper }
/* SlideHelper { id: slideHelper } */