QML, cleanup: remove stackView

There is no reason (any more?) to have a property defined
that basically renames the global pageStack into a local
pageView. Just cleanup.

Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
Jan Mulder 2018-10-12 14:57:43 +02:00 committed by Dirk Hohndel
parent 5d1c30acbf
commit 4263d1c3f5
4 changed files with 18 additions and 19 deletions

View file

@ -292,7 +292,7 @@ Kirigami.Page {
onClicked: {
manager.cancelDownloadDC()
if (!progressBar.visible) {
stackView.pop();
pageStack.pop();
download.text = qsTr("Download")
divesDownloaded = false
manager.progressMessage = ""
@ -356,7 +356,7 @@ Kirigami.Page {
manager.saveChangesLocal()
diveModel.clear()
diveModel.addAllDives()
stackView.pop();
pageStack.pop();
download.text = qsTr("Download")
divesDownloaded = false
}