diff --git a/ui/app/AppLayouts/Chat/components/Contact.qml b/ui/app/AppLayouts/Chat/components/Contact.qml index f6313fdf6c..2dc1f0489c 100644 --- a/ui/app/AppLayouts/Chat/components/Contact.qml +++ b/ui/app/AppLayouts/Chat/components/Contact.qml @@ -60,13 +60,6 @@ Rectangle { anchors.rightMargin: Style.current.padding fillMode: Image.PreserveAspectFit source: "../../../img/list-next.svg" - MouseArea { - cursorShape: Qt.PointingHandCursor - anchors.fill: parent - onClicked: { - onItemChecked(pubKey, isChecked) - } - } } CheckBox { @@ -94,4 +87,13 @@ Rectangle { anchors.top: accountImage.top anchors.topMargin: 10 } + + MouseArea { + cursorShape: Qt.PointingHandCursor + anchors.fill: parent + visible: !showCheckbox + onClicked: { + onItemChecked(pubKey, isChecked) + } + } }