From 81999e4667a2bc50ceb0a33f5101d339770d1c87 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 27 Dec 2015 12:20:36 -0800 Subject: QML UI: add debug output for echoMode For some users by default the password characters aren't hidden. Maybe the debugging output will help us understand what's going on. Signed-off-by: Dirk Hohndel --- qt-mobile/qml/CloudCredentials.qml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'qt-mobile') diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml index c2ebb88ab..17353d3ac 100644 --- a/qt-mobile/qml/CloudCredentials.qml +++ b/qt-mobile/qml/CloudCredentials.qml @@ -60,6 +60,7 @@ 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,5 +97,9 @@ Item { Item { Layout.fillHeight: true } + Component.onCompleted: { + console.log("password echoMode is " + password.echoMode); + } + } } -- cgit v1.2.3-70-g09d2