Scroll to item that's opened from GlobalSearchPopup

This commit is contained in:
Bart De Vries 2023-02-28 16:00:37 +01:00
parent 25a22d7bdc
commit 757b88a84d
1 changed files with 3 additions and 4 deletions

View File

@ -43,17 +43,16 @@ Addons.SearchPopupField {
pushPage("EpisodeListPage");
pageStack.push("qrc:/EntryPage.qml", {"entry": entry});
/* let's not select the current item for now, since it can take a long
* time and will not automatically scroll to that item either
// Find the index of the entry on the EpisodeListPage and scroll to it
var episodeModel = pageStack.get(0).episodeList.model
for (var i = 0; i < episodeModel.rowCount(); i++) {
var index = episodeModel.index(i, 0);
if (entry == episodeModel.data(index, AbstractEpisodeModel.EntryRole)) {
if (entry.id == episodeModel.data(index, AbstractEpisodeModel.IdRole)) {
pageStack.get(0).episodeList.currentIndex = i;
pageStack.get(0).episodeList.selectionModel.setCurrentIndex(index, ItemSelectionModel.ClearAndSelect | ItemSelectionModel.Rows);
pageStack.get(0).episodeList.positionViewAtIndex(i, ListView.Center);
}
}
*/
}
Component.onCompleted: {