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,10 +196,15 @@ ApplicationWindow
} }
onClosing: { onClosing: {
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 // destroy most GUI components so that we don't dump so many null reference warnings on exit
app.header.visible = false app.header.visible = false
mainStackView.clear() mainStackView.clear()
} }
}
Connections { Connections {
target: Daemon target: Daemon