diff options
author | link2xt <link2xt@testrun.org> | 2021-08-28 21:38:47 +0000 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-08-28 21:38:47 +0000 |
commit | 4d051bc35611fa5b75865769df7a512d90a13c65 (patch) | |
tree | 79c83f6bda7277009aef9db07a54247c082ea863 /qml/ConfigurePage.qml | |
parent | 5eb7970d33ab0fab70f7fbb70f61bd1911d19b98 (diff) | |
download | kdeltachat-4d051bc35611fa5b75865769df7a512d90a13c65.tar.gz kdeltachat-4d051bc35611fa5b75865769df7a512d90a13c65.zip |
Start I/O after configuring or importing an account
Diffstat (limited to 'qml/ConfigurePage.qml')
-rw-r--r-- | qml/ConfigurePage.qml | 6 |
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() + } } } } |