summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/Export.qml
diff options
context:
space:
mode:
authorGravatar jan Iversen <jan@casacondor.com>2019-12-07 22:00:20 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-11 12:36:43 -0500
commit5cba410aa616e26edda6c2b97a9b9bcc611d3312 (patch)
treee7265bf204e3baf8a7f2a26ab221e3b9a873e82d /mobile-widgets/qml/Export.qml
parent422bb0da576690da40c34c572d9c4e51baf4f730 (diff)
downloadsubsurface-5cba410aa616e26edda6c2b97a9b9bcc611d3312.tar.gz
mobile/qml: close export page after upload
pop from pagestack. Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'mobile-widgets/qml/Export.qml')
-rw-r--r--mobile-widgets/qml/Export.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/mobile-widgets/qml/Export.qml b/mobile-widgets/qml/Export.qml
index d770e21b6..81ceaaf09 100644
--- a/mobile-widgets/qml/Export.qml
+++ b/mobile-widgets/qml/Export.qml
@@ -76,9 +76,11 @@ Kirigami.ScrollablePage {
// TO BE IMPLEMENTED
}
manager.exportToWEB(selectedExport, fieldUserID.text, fieldPassword.text, anonymize.checked)
+ pageStack.pop()
close()
}
onRejected: {
+ pageStack.pop()
close()
}