Skip to content

Commit

Permalink
add debug output for password input
Browse files Browse the repository at this point in the history
  • Loading branch information
Timm committed May 22, 2024
1 parent 2950fc9 commit fcbc347
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qml/SettingsPassword.qml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@ SettingsPasswordForm {
if(passwordInput.text == password)
{
unlocked = true
console.log("Password accepted: " + passwordInput.text)
passwordAccepted()
}
else
{
console.log("Password wrong: " + passwordInput.text)
unlocked = false
}
console.log("Password accepted: " + unlocked)

}

}

0 comments on commit fcbc347

Please sign in to comment.