QML UI: remove no longer needed debug output

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-01-22 10:19:46 -08:00
parent 60115821a5
commit 6a4fbecea5

View file

@ -59,7 +59,6 @@ Item {
checked: false
id: showPassword
onCheckedChanged: {
console.log("changing password echoMode to " + (checked ? TextInput.Normal : TextInput.Password) + " was " + password.echoMode);
password.echoMode = checked ? TextInput.Normal : TextInput.Password
}
}
@ -96,9 +95,5 @@ Item {
Item {
Layout.fillHeight: true
}
Component.onCompleted: {
console.log("password echoMode is " + password.echoMode);
}
}
}