aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInho Lee <inho.lee@qt.io>2022-10-18 09:18:58 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-10-18 10:22:31 +0000
commit4328b419b8b60246a4766b723d7762c3a0bf06c4 (patch)
tree2e2441677c89427e1558145d970ac6ac7670fe3e
parentf596171274134b176c47f929b3c70e255dc92288 (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 Change-Id: I06994c290828097f570099f3766fb4744fad6edd Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> (cherry picked from commit 043ce7722cc3e8893b31a56392fdb83eeb761bb9) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-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 27bb3737..68546d4f 100644
--- a/examples/virtualkeyboard/basic/basic-b2qt.qml
+++ b/examples/virtualkeyboard/basic/basic-b2qt.qml
@@ -49,7 +49,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
}