From 86156d2f163a6b12784cab3264e97153dd871497 Mon Sep 17 00:00:00 2001 From: erinn Date: Tue, 4 Jun 2019 12:59:27 -0700 Subject: [PATCH] permit clicks within chatoverlay editbox --- qml/overlays/ChatOverlay.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qml/overlays/ChatOverlay.qml b/qml/overlays/ChatOverlay.qml index cf97b9db..2ee33dbd 100644 --- a/qml/overlays/ChatOverlay.qml +++ b/qml/overlays/ChatOverlay.qml @@ -136,6 +136,11 @@ ColumnLayout { radius: 10 + MouseArea { + anchors.fill: parent + onClicked: txtMessage.focus = true + } + Flickable { id: flkMessage anchors.fill: parent//this does nothing! bug in qt @@ -230,11 +235,6 @@ ColumnLayout { } } } - - MouseArea { - anchors.fill: parent - onClicked: txtMessage.focus = true - } } ColumnLayout {