Merge pull request #1829

bd82898 PasswordDialog: hide balance when passwordDialog is open (xiphon)
This commit is contained in:
luigi1111
2018-12-18 09:45:36 -06:00
2 changed files with 6 additions and 1 deletions

View File

@@ -61,6 +61,8 @@ Item {
root.visible = true;
passwordInput.forceActiveFocus();
passwordInput.text = ""
appWindow.hideBalanceForced = true;
appWindow.updateBalance();
}
function showError(errorText) {
@@ -73,6 +75,8 @@ Item {
middlePanel.enabled = true
titleBar.enabled = true
root.visible = false;
appWindow.hideBalanceForced = false;
appWindow.updateBalance();
closeCallback();
}