summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/DiveList.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r--mobile-widgets/qml/DiveList.qml10
1 files changed, 1 insertions, 9 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml
index de06fb14e..18b51d70e 100644
--- a/mobile-widgets/qml/DiveList.qml
+++ b/mobile-widgets/qml/DiveList.qml
@@ -36,14 +36,6 @@ Kirigami.ScrollablePage {
}
}
- function pageIndex(pageToFind) {
- for (var i = 0; i < pageStack.contentItem.contentChildren.length; i++) {
- if (pageStack.contentItem.contentChildren[i] === pageToFind)
- return i
- }
- return -1
- }
-
Component {
id: diveDelegate
Kirigami.AbstractListItem {
@@ -124,7 +116,7 @@ Kirigami.ScrollablePage {
diveListView.currentIndex = index
detailsWindow.showDiveIndex(index);
// switch to detailsWindow (or push it if it's not in the stack)
- var i = pageIndex(detailsWindow)
+ var i = rootItem.pageIndex(detailsWindow)
if (i === -1)
pageStack.push(detailsWindow)
else