settings page: strict password check

This commit is contained in:
Jacob Brydolf
2016-10-11 01:00:19 +02:00
parent 010cce4133
commit e5b9a1b9d7

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
}