From de635cb24f8943192dab2fab9e8541277e65df2c Mon Sep 17 00:00:00 2001 From: Jacob Brydolf Date: Sat, 19 Nov 2016 15:07:49 +0100 Subject: [PATCH] pw dialog: close popup before continue --- components/PasswordDialog.qml | 4 ++-- 1 file 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() } } }