settings page: strict password check

This commit is contained in:
Jacob Brydolf 2016-10-11 01:00:19 +02:00
parent 010cce4133
commit e5b9a1b9d7
No known key found for this signature in database
GPG key ID: DE46246550D2F3C5

View file

@ -72,7 +72,7 @@ Rectangle {
id: settingsPasswordDialog
standardButtons: StandardButton.Ok + StandardButton.Cancel
onAccepted: {
if(appWindow.password == settingsPasswordDialog.password){
if(appWindow.password === settingsPasswordDialog.password){
memoTextInput.text = currentWallet.seed
showSeedButton.visible = false
}