aboutsummaryrefslogtreecommitdiffstats
path: root/src/virtualkeyboard/doc/src
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2014-09-13 17:58:32 +0300
committerJarkko Koivikko <jarkko.koivikko@code-q.fi>2015-01-16 14:37:07 +0200
commitb806d7f30653c85d3b5ed9dab2aed24b0e5cf173 (patch)
tree4123ceab5f398dd3893c2c936d0860e530b7b760 /src/virtualkeyboard/doc/src
parent113fd3b9399a9c76a51ddfa28ad6d7f3548f07b9 (diff)
Fix incorrect example in the documentation
If the previous documentation was followed, it would cause a bug in the application code which would prevent hiding the keyboard. Task-number: QTRD-3178 Change-Id: I7b615abc0f168ef14d66c12470fad618680a33b0 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'src/virtualkeyboard/doc/src')
-rw-r--r--src/virtualkeyboard/doc/src/deployment-guide.qdoc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/virtualkeyboard/doc/src/deployment-guide.qdoc b/src/virtualkeyboard/doc/src/deployment-guide.qdoc
index 50f9a64b..f3e1ba66 100644
--- a/src/virtualkeyboard/doc/src/deployment-guide.qdoc
+++ b/src/virtualkeyboard/doc/src/deployment-guide.qdoc
@@ -120,10 +120,9 @@ Item {
}
InputPanel {
id: inputPanel
- y: Qt.inputMethod.visible ? appContainer.height - inputPanel.height : appContainer.height
+ y: Qt.inputMethod.visible ? parent.height - inputPanel.height : parent.height
anchors.left: parent.left
anchors.right: parent.right
- anchors.bottom: parent.bottom
}
}
\endcode