diff options
| author | Jacob Brydolf <jacob@brydolf.net> | 2016-11-19 15:07:49 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2016-11-26 19:35:55 +0100 |
| commit | de635cb24f8943192dab2fab9e8541277e65df2c (patch) | |
| tree | 1ef05d5df9e8068e56712520e6afe975b2d36859 /components/PasswordDialog.qml | |
| parent | 86772bee5221d68862a5471dca6b2ee4227599e2 (diff) | |
| download | monzero-gui-de635cb24f8943192dab2fab9e8541277e65df2c.tar.gz monzero-gui-de635cb24f8943192dab2fab9e8541277e65df2c.tar.xz monzero-gui-de635cb24f8943192dab2fab9e8541277e65df2c.zip | |
pw dialog: close popup before continue
Diffstat (limited to 'components/PasswordDialog.qml')
| -rw-r--r-- | components/PasswordDialog.qml | 4 |
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() } } } |
