1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-24 02:23:45 +01:00

pw dialog: close popup before continue

This commit is contained in:
Jacob Brydolf 2016-11-19 15:07:49 +01:00 committed by Jaquee
parent 86772bee52
commit de635cb24f
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

View File

@ -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()
}
}
}