diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-26 21:35:35 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-26 21:49:20 -0700 |
commit | a4977f2a908934c1654a195826dc6b21575c2a19 (patch) | |
tree | 77e5706f6e12f769f3b74d66581e74b30be0de85 /qt-mobile/qml/CloudCredentials.qml | |
parent | d4357b3b21c803a663d8f2cb1c0af2408a1cf2e8 (diff) | |
download | subsurface-a4977f2a908934c1654a195826dc6b21575c2a19.tar.gz |
QML UI: add some diagnostics to App log
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/CloudCredentials.qml')
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml index 6da8b0bab..ed3ff0a80 100644 --- a/qt-mobile/qml/CloudCredentials.qml +++ b/qt-mobile/qml/CloudCredentials.qml @@ -26,9 +26,11 @@ Item { onVisibleChanged: { if (visible) { + manager.appendTextToLog("Credential scrn: show kbd was: " + (Qt.inputMethod.isVisible ? "visible" : "invisible")) Qt.inputMethod.show() login.forceActiveFocus() } else { + manager.appendTextToLog("Credential scrn: hide kbd was: " + (Qt.inputMethod.isVisible ? "visible" : "invisible")) Qt.inputMethod.hide() } } |