permit clicks within chatoverlay editbox

This commit is contained in:
erinn 2019-06-04 12:59:27 -07:00
parent 007e485e76
commit 86156d2f16
1 changed files with 5 additions and 5 deletions

View File

@ -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 {