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 09:37:31 +0000
commit8390746fcac7b154e906727dacfa66bb66b40197 (patch)
treef0491862111c1b830681f91e763e47501bed79e4
parentfcccbe643928157f2d893dd440d285988fa2c1fa (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 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
}