aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2019-11-01 12:20:23 +0200
committerJarkko Koivikko <jarkko.koivikko@code-q.fi>2019-11-26 12:09:44 +0200
commit462a024e4101d54490b5da26c5fec7818beb5253 (patch)
tree3e7f7b7fbdb741249c2c3f492befcfef53dd5685
parent6547842b5ec6f3f13dc0d9fec6c8e4d167bfb2ce (diff)
example/basic: Fix full screen handwriting toggle
- Due to bug in the basic example, the input controls were not responding to touch/mouse after toggling full screen handwriting mode from active state. Change-Id: I89a512a2f9bdd4a9b9ad10d7b269e99d3bef77d2 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
-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 59c64b86..ff8b93a7 100644
--- a/examples/virtualkeyboard/basic/basic-b2qt.qml
+++ b/examples/virtualkeyboard/basic/basic-b2qt.qml
@@ -49,7 +49,7 @@ Item {
anchors.top: parent.top
anchors.right: parent.right
anchors.bottom: inputPanel.top
- handwritingInputPanelActive: handwritingInputPanel.active
+ handwritingInputPanelActive: handwritingInputPanel.available && handwritingInputPanel.active
}
/* Handwriting input panel for full screen handwriting input.