diff options
Diffstat (limited to 'qt-mobile/qml/CloudCredentials.qml')
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 5 |
1 files changed, 5 insertions, 0 deletions
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); + } + } } |