From c9f660ff8faaca144b6db624defb3056b84d3286 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Sat, 4 Oct 2025 01:06:33 +0200 Subject: [PATCH] NotificationHistoryPanel: cursor only changes to pointing when expandable / on delete button --- Modules/Notification/NotificationHistoryPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Notification/NotificationHistoryPanel.qml b/Modules/Notification/NotificationHistoryPanel.qml index 59894e55..c8df7b0d 100644 --- a/Modules/Notification/NotificationHistoryPanel.qml +++ b/Modules/Notification/NotificationHistoryPanel.qml @@ -169,7 +169,7 @@ NPanel { notificationList.expandedId = notificationId } } - cursorShape: Qt.PointingHandCursor + cursorShape: (summaryText.truncated || bodyText.truncated) ? Qt.PointingHandCursor : Qt.ArrowCursor } RowLayout {