Print wallet filename in password dialog where approrpiate

This commit is contained in:
moneromooo.monero
2016-11-26 14:46:42 +00:00
parent 26abdee5c4
commit b5a993bd8a
4 changed files with 23 additions and 5 deletions

View File

@@ -240,7 +240,7 @@ ApplicationWindow {
console.log("closing wallet async : " + wallet.address)
walletManager.closeWalletAsync(wallet)
// try to open wallet with password;
passwordDialog.open();
passwordDialog.open(wallet.path);
} else {
// opening with password but password doesn't match
console.error("Error opening wallet with password: ", wallet.errorString);
@@ -252,7 +252,7 @@ ApplicationWindow {
walletManager.closeWalletAsync(wallet);
informationPopup.open()
informationPopup.onCloseCallback = function() {
passwordDialog.open()
passwordDialog.open(wallet.path)
}
}
return;