mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
settings page: strict password check
This commit is contained in:
parent
010cce4133
commit
e5b9a1b9d7
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ Rectangle {
|
||||||
id: settingsPasswordDialog
|
id: settingsPasswordDialog
|
||||||
standardButtons: StandardButton.Ok + StandardButton.Cancel
|
standardButtons: StandardButton.Ok + StandardButton.Cancel
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
if(appWindow.password == settingsPasswordDialog.password){
|
if(appWindow.password === settingsPasswordDialog.password){
|
||||||
memoTextInput.text = currentWallet.seed
|
memoTextInput.text = currentWallet.seed
|
||||||
showSeedButton.visible = false
|
showSeedButton.visible = false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue