From 462a024e4101d54490b5da26c5fec7818beb5253 Mon Sep 17 00:00:00 2001 From: Jarkko Koivikko Date: Fri, 1 Nov 2019 12:20:23 +0200 Subject: 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 --- examples/virtualkeyboard/basic/basic-b2qt.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.3