bug: fixing updating of properties in presentation_model

This commit is contained in:
Chris Cochrun 2023-05-17 17:01:34 -05:00
parent b4648edde2
commit 56c7dc8541
2 changed files with 36 additions and 4 deletions

View file

@ -183,7 +183,7 @@ Item {
}
function changePresentation(index) {
let pres = presProxyModel.getPresentation(index);
let pres = presProxyModel.presentationModel.getItem(index);
root.presentation = pres;
console.log(pres.filePath.toString());
updatePageCount(presentationPreview.frameCount);
@ -193,7 +193,7 @@ Item {
function updateTitle(text) {
changeTitle(text, false);
pressqlmodel.updateTitle(presentation.id, text);
presProxyModel.presentationModel.updateTitle(presentation.id, text);
showPassiveNotification(presentation.title);
}
@ -208,6 +208,6 @@ Item {
if (curPageCount === presentation.pageCount)
return;
presentation.pageCount = pageCount;
pressqlmodel.updatePageCount(presentation.id, pageCount);
presProxyModel.presentationModel.updatePageCount(presentation.id, pageCount);
}
}