From 4d051bc35611fa5b75865769df7a512d90a13c65 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 28 Aug 2021 21:38:47 +0000 Subject: Start I/O after configuring or importing an account --- qml/ConfigurePage.qml | 6 ++++++ 1 file changed, 6 insertions(+) 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() + } } } } -- cgit v1.2.3-54-g00ecf