mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile-widgets/qml: close Export page after export (or cancel)
Remove page from pageStack, which removes the page from user view. Signed-off-by: Jan Iversen <jan@casacondor.com>
This commit is contained in:
parent
fb0bb33d82
commit
599984d44a
1 changed files with 2 additions and 0 deletions
|
@ -19,9 +19,11 @@ Kirigami.ScrollablePage {
|
||||||
title: radioGroup.current.text
|
title: radioGroup.current.text
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
manager.exportToFile(selectedExport, fileUrls, anonymize.checked)
|
manager.exportToFile(selectedExport, fileUrls, anonymize.checked)
|
||||||
|
pageStack.pop()
|
||||||
close()
|
close()
|
||||||
}
|
}
|
||||||
onRejected: {
|
onRejected: {
|
||||||
|
pageStack.pop()
|
||||||
close()
|
close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue