fix(@desktop/general): search input in chat view should change cursor to input cursor when hovered

Fixes #5135
This commit is contained in:
Sale Djenic 2022-03-25 15:33:16 +01:00 committed by Iuri Matias
parent da22517138
commit 31132e3a7e
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,8 @@ Item {
icon.name: "search" icon.name: "search"
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: root.openAppSearch() onClicked: root.openAppSearch()
} }
} }