fix: Wallet storage path creation broken (#49)

This commit is contained in:
Ilya Kitaev
2016-09-05 22:07:53 +03:00
parent c87eed558f
commit 3280fe389a
4 changed files with 21 additions and 2 deletions

View File

@@ -186,7 +186,7 @@ Item {
selectFolder: true
title: qsTr("Please choose a directory") + translationManager.emptyString
onAccepted: {
fileUrlInput.text = fileDialog.folder
fileUrlInput.text = walletManager.urlToLocalPath(fileDialog.folder)
fileDialog.visible = false
}
onRejected: {
@@ -213,6 +213,7 @@ Item {
fileDialog.open()
}
}
}
Rectangle {