From 9f8863559d26d3ff19ff7d79954d2ebacda6a432 Mon Sep 17 00:00:00 2001 From: erinn Date: Wed, 20 Mar 2019 14:13:30 -0700 Subject: [PATCH] allow clicking off textboxes in the control pane --- qml/widgets/ContactList.qml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/qml/widgets/ContactList.qml b/qml/widgets/ContactList.qml index b01b86dd..8e7a2d72 100644 --- a/qml/widgets/ContactList.qml +++ b/qml/widgets/ContactList.qml @@ -8,7 +8,15 @@ ColumnLayout { id: root - MyProfile{ // CURRENT PROFILE INFO AND CONTROL BAR + MouseArea { + anchors.fill: parent + + onClicked: { + forceActiveFocus() + } + } + + MyProfile{ // CURRENT PROFILE INFO AND CONTROL BAR id: myprof }