From 66bfcd6239c96ec6d1f43379a8e567338a7cceb6 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 5 Dec 2022 00:35:40 +0100 Subject: [PATCH] Fix cursorShape for avatar in StateDelegate BUG: 454893 --- src/qml/Component/Timeline/StateDelegate.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/Component/Timeline/StateDelegate.qml b/src/qml/Component/Timeline/StateDelegate.qml index 242c7682b..78e2ea35b 100644 --- a/src/qml/Component/Timeline/StateDelegate.qml +++ b/src/qml/Component/Timeline/StateDelegate.qml @@ -88,6 +88,7 @@ QQC2.Control { MouseArea { anchors.fill: parent + cursorShape: Qt.PointingHandCursor onClicked: userDetailDialog.createObject(QQC2.ApplicationWindow.overlay, {room: currentRoom, user: author.object, displayName: author.displayName, avatarMediaId: author.avatarMediaId, avatarUrl: author.avatarUrl}).open() } }