aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInho Lee <inho.lee@qt.io>2022-10-18 09:18:58 +0200
committerInho Lee <inho.lee@qt.io>2022-10-18 09:12:30 +0000
commit043ce7722cc3e8893b31a56392fdb83eeb761bb9 (patch)
tree57149c4255bc98d12e46cdead2296d156326c05d
parent5f5e8c275eacc9ea7eeee499e313c076ec3b22d1 (diff)
Fix visible area in the basic example
When fixing portrait mode, input area's position was changed accidently. Task-number: QTBUG-83217 Fixes: QTBUG-98750 Pick-to: 6.4 6.2 5.15 Change-Id: I06994c290828097f570099f3766fb4744fad6edd Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi>
-rw-r--r--examples/virtualkeyboard/basic/basic-b2qt.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/virtualkeyboard/basic/basic-b2qt.qml b/examples/virtualkeyboard/basic/basic-b2qt.qml
index aebabd2e..72784655 100644
--- a/examples/virtualkeyboard/basic/basic-b2qt.qml
+++ b/examples/virtualkeyboard/basic/basic-b2qt.qml
@@ -23,7 +23,7 @@ Item {
anchors.left: parent.left
anchors.top: parent.top
anchors.right: parent.right
- anchors.bottom: parent.bottom
+ anchors.bottom: inputPanel.top
handwritingInputPanelActive: handwritingInputPanel.available && handwritingInputPanel.active
}