diff options
author | link2xt <link2xt@testrun.org> | 2021-08-28 21:28:11 +0000 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-08-28 21:28:11 +0000 |
commit | 4f5a03a67d42a11a4ed6e2463790b1277def0f79 (patch) | |
tree | fc52021f3304d125ef9ad512841b8456e8a984aa /qml/ConfigurePage.qml | |
parent | caac309593527dcd3da562a7ad7ccb9ff39a04bc (diff) | |
download | kdeltachat-4f5a03a67d42a11a4ed6e2463790b1277def0f79.tar.gz kdeltachat-4f5a03a67d42a11a4ed6e2463790b1277def0f79.zip |
Show account import progress
Diffstat (limited to 'qml/ConfigurePage.qml')
-rw-r--r-- | qml/ConfigurePage.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qml/ConfigurePage.qml b/qml/ConfigurePage.qml index 5a28e91..a745348 100644 --- a/qml/ConfigurePage.qml +++ b/qml/ConfigurePage.qml @@ -167,5 +167,9 @@ Kirigami.Page { function onConfigureProgress(accountId, progress, comment) { progressBar.value = progress / 1000.0 } + + function onImexProgress(accountId, progress) { + progressBar.value = progress / 1000.0 + } } } |