From 34dde88f0e6e1bbfae7758045f90cff4f9fa6e97 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Tue, 6 Jun 2023 10:47:47 +0200 Subject: [PATCH] display subject when we have sync issues like network errors Signed-off-by: Matthieu Gallien --- src/gui/tray/ActivityItemContent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/ActivityItemContent.qml b/src/gui/tray/ActivityItemContent.qml index 81823e23e9..b5a55f7c60 100644 --- a/src/gui/tray/ActivityItemContent.qml +++ b/src/gui/tray/ActivityItemContent.qml @@ -221,7 +221,7 @@ RowLayout { Layout.fillHeight: true Layout.alignment: Qt.AlignTop | Qt.AlignLeft - text: (root.activityData.type === "Sync") ? root.activityData.displayPath + text: (root.activityData.type === "Sync") ? root.activityData.subject : (root.activityData.type === "File") ? root.activityData.subject : (root.activityData.type === "Notification") ? root.activityData.message : ""