1
0

android back button pops pages from stackview unless we reach

bottom of stack
This commit is contained in:
Sander van Grieken
2022-04-04 17:19:25 +02:00
parent ff33102b91
commit e30cb4ed5f

View File

@@ -196,9 +196,14 @@ ApplicationWindow
}
onClosing: {
// destroy most GUI components so that we don't dump so many null reference warnings on exit
app.header.visible = false
mainStackView.clear()
if (stack.depth > 1) {
close.accepted = false
stack.pop()
} else {
// destroy most GUI components so that we don't dump so many null reference warnings on exit
app.header.visible = false
mainStackView.clear()
}
}
Connections {