aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Brydolf <jacob@brydolf.net>2016-11-19 15:07:49 +0100
committerJaquee <jaquee.monero@gmail.com>2016-11-26 19:35:55 +0100
commitde635cb24f8943192dab2fab9e8541277e65df2c (patch)
tree1ef05d5df9e8068e56712520e6afe975b2d36859
parent86772bee5221d68862a5471dca6b2ee4227599e2 (diff)
downloadmonzero-gui-de635cb24f8943192dab2fab9e8541277e65df2c.tar.gz
monzero-gui-de635cb24f8943192dab2fab9e8541277e65df2c.tar.xz
monzero-gui-de635cb24f8943192dab2fab9e8541277e65df2c.zip
pw dialog: close popup before continue
-rw-r--r--components/PasswordDialog.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index 7d1a5bd6..7b19c517 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -143,8 +143,8 @@ Window {
text: qsTr("Cancel")
KeyNavigation.tab: passwordInput
onClicked: {
- root.rejected()
root.close()
+ root.rejected()
}
}
MoneroComponents.StandardButton {
@@ -158,8 +158,8 @@ Window {
text: qsTr("Ok")
KeyNavigation.tab: cancelButton
onClicked: {
- root.accepted()
root.close()
+ root.accepted()
}
}
}