Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 nextcloud-desktop (3.1.1-2+deb11u2) bullseye-security; urgency=medium
 .
   * Non-maintainer upload by the LTS Security Team.
Author: Abhijith PA <abhijith@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout https://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: (upstream|backport|vendor|other), (<patch-url>|commit:<commit-id>)
Bug: <upstream-bugtracker-url>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: (no|not-needed|<patch-forwarded-url>)
Applied-Upstream: <version>, (<commit-url>|commit:<commid-id>)
Reviewed-By: <name and email of someone who approved/reviewed the patch>
Last-Update: 2025-08-08

--- a/src/gui/tray/Window.qml
+++ b/src/gui/tray/Window.qml
@@ -579,6 +579,7 @@ Window {
                     Text {
                         id: activityTextTitle
                         text: (type === "Activity" || type === "Notification") ? subject : message
+                        textFormat: Text.PlainText
                         width: parent.width
                         elide: Text.ElideRight
                         font.pixelSize: Style.topLinePixelSize
@@ -591,6 +592,7 @@ Window {
                             : (type === "File") ? subject
                             : (type === "Notification") ? message
                             : ""
+                        textFormat: Text.PlainText
                         height: (text === "") ? 0 : activityTextTitle.height
                         width: parent.width
                         elide: Text.ElideRight
@@ -600,6 +602,7 @@ Window {
                     Text {
                         id: activityTextDateTime
                         text: dateTime
+                        textFormat: Text.PlainText
                         height: (text === "") ? 0 : activityTextTitle.height
                         width: parent.width
                         elide: Text.ElideRight
@@ -617,6 +620,7 @@ Window {
                         contentItem: Text {
                             text: toolTip.text
                             font: toolTip.font
+                            textFormat: Text.PlainText
                             wrapMode: Text.Wrap
                             color: toolTip.palette.toolTipText
                         }
@@ -651,7 +655,6 @@ Window {
                             height: activityItem.height
 
                             text: !primary ? "" : activityItem.links[actionIndex].label
-
                             imageSource: !primary ? activityActionsLayout.actionButtonIcon(actionIndex) : ""
 
                             textColor: primary ? Style.ncBlue : "black"
