mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
mobile UI/login: remove startpage dependency in divelist
DiveList should not depend on StartPage, so remove references to startPage. Signed-off-by: Jan Iversen <jani@apache.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b83dcc4b25
commit
11810d5d06
1 changed files with 5 additions and 14 deletions
|
@ -499,8 +499,6 @@ Kirigami.ScrollablePage {
|
||||||
ListView {
|
ListView {
|
||||||
id: diveListView
|
id: diveListView
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
opacity: 1.0 - startPage.opacity
|
|
||||||
visible: opacity > 0
|
|
||||||
model: diveListModel
|
model: diveListModel
|
||||||
currentIndex: -1
|
currentIndex: -1
|
||||||
delegate: diveDelegate
|
delegate: diveDelegate
|
||||||
|
@ -571,18 +569,11 @@ Kirigami.ScrollablePage {
|
||||||
}
|
}
|
||||||
|
|
||||||
onBackRequested: {
|
onBackRequested: {
|
||||||
if (startPage.visible && diveListView.count > 0 &&
|
if (Qt.platform.os != "ios")
|
||||||
prefs.credentialStatus !== CloudStatus.CS_INCORRECT_USER_PASSWD) {
|
manager.quit()
|
||||||
prefs.credentialStatus = oldStatus
|
|
||||||
event.accepted = true;
|
// let's make sure Kirigami doesn't quit on our behalf
|
||||||
}
|
event.accepted = true
|
||||||
if (!startPage.visible) {
|
|
||||||
if (Qt.platform.os != "ios") {
|
|
||||||
manager.quit()
|
|
||||||
}
|
|
||||||
// let's make sure Kirigami doesn't quit on our behalf
|
|
||||||
event.accepted = true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function setCurrentDiveListIndex(idx, noScroll) {
|
function setCurrentDiveListIndex(idx, noScroll) {
|
||||||
|
|
Loading…
Reference in a new issue