aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-12-18 09:45:36 -0600
committerluigi1111 <luigi1111w@gmail.com>2018-12-18 09:45:36 -0600
commit83f8508f560f5d1fae7452621e35c6d554a577de (patch)
tree5169245759f3eff44f9464082d7867e119de9a35 /components
parent16e08c2a12a874358392b3b1489d38dd39bef524 (diff)
parentbd8289803ec5d6ed10b5b82d6460cfdbede673f1 (diff)
downloadmonzero-gui-83f8508f560f5d1fae7452621e35c6d554a577de.tar.gz
monzero-gui-83f8508f560f5d1fae7452621e35c6d554a577de.tar.xz
monzero-gui-83f8508f560f5d1fae7452621e35c6d554a577de.zip
Merge pull request #1829
bd82898 PasswordDialog: hide balance when passwordDialog is open (xiphon)
Diffstat (limited to 'components')
-rw-r--r--components/PasswordDialog.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index d0f442e4..01d91fec 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -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();
}