aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()
+ }
}
}
}