aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlink2xt <link2xt@testrun.org>2021-08-28 21:38:47 +0000
committerlink2xt <link2xt@testrun.org>2021-08-28 21:38:47 +0000
commit4d051bc35611fa5b75865769df7a512d90a13c65 (patch)
tree79c83f6bda7277009aef9db07a54247c082ea863
parent5eb7970d33ab0fab70f7fbb70f61bd1911d19b98 (diff)
downloadkdeltachat-4d051bc35611fa5b75865769df7a512d90a13c65.tar.gz
kdeltachat-4d051bc35611fa5b75865769df7a512d90a13c65.zip
Start I/O after configuring or importing an account
-rw-r--r--qml/ConfigurePage.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/qml/ConfigurePage.qml b/qml/ConfigurePage.qml
index a745348..bcb916d 100644
--- a/qml/ConfigurePage.qml
+++ b/qml/ConfigurePage.qml
@@ -166,10 +166,16 @@ Kirigami.Page {
target: root.eventEmitter
function onConfigureProgress(accountId, progress, comment) {
progressBar.value = progress / 1000.0
+ if (progress == 1000) {
+ root.context.startIo()
+ }
}
function onImexProgress(accountId, progress) {
progressBar.value = progress / 1000.0
+ if (progress == 1000) {
+ root.context.startIo()
+ }
}
}
}