diff options
author | Frederick Yin <fkfd@fkfd.me> | 2023-07-27 11:41:09 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2023-07-27 11:41:09 +0800 |
commit | 8a01f6d979e3d452dbec10be7f8f0fab82d7fbb6 (patch) | |
tree | ca176b1ae00e7c3a651e2e8a3a44c026606fd3d7 /contents/ui | |
parent | 119255ee7c0e76edbc9a43e4550ccb664d0baea3 (diff) |
Use pointing hand cursor for announcements too
Diffstat (limited to 'contents/ui')
-rw-r--r-- | contents/ui/ActivityView.qml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/contents/ui/ActivityView.qml b/contents/ui/ActivityView.qml index c8ec3c9..6eb7e26 100644 --- a/contents/ui/ActivityView.qml +++ b/contents/ui/ActivityView.qml @@ -78,10 +78,7 @@ PlasmaComponents.ListItem { MouseArea { width: parent.width height: parent.height - cursorShape: - type == "announcement" - ? Qt.ArrowCursor - : Qt.PointingHandCursor + cursorShape: Qt.PointingHandCursor onClicked: () => { if (type == "announcement") { expanded = !expanded |