LogoutPopup: implement export keys button callback

This commit is contained in:
miruka
2019-09-09 14:49:54 -04:00
parent 7c0bed79a9
commit 82f0c273e7
3 changed files with 19 additions and 1 deletions

View File

@@ -12,6 +12,9 @@ HFileDialogOpener {
}
signal done()
property string userId: ""
property bool exporting: false
@@ -23,6 +26,7 @@ HFileDialogOpener {
py.callClientCoro(userId, "export_keys", [path, passphrase], () => {
exporting = false
done()
})
}