From 84fa75936a85e14a4a07e9ca7d90bc0c00e55396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tri=E1=BB=87u=20Kha?= Date: Mon, 23 Feb 2026 21:16:15 +0700 Subject: [PATCH] clipboard: fix html elements get parsed in clipboard entry (#1798) * clipboard: fix html elements get parsed in clipboard entry * Revert "clipboard: fix html elements get parsed in clipboard entry" This reverts commit 52b11eeb98cb6d3ca740d6f4c88d7a6ac322c486. * clipboard: fix html elements get parsed in clipboard entry --- quickshell/Modals/Clipboard/ClipboardEntry.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/quickshell/Modals/Clipboard/ClipboardEntry.qml b/quickshell/Modals/Clipboard/ClipboardEntry.qml index 5c09d166..53a2ecec 100644 --- a/quickshell/Modals/Clipboard/ClipboardEntry.qml +++ b/quickshell/Modals/Clipboard/ClipboardEntry.qml @@ -135,6 +135,7 @@ Rectangle { wrapMode: Text.WordWrap maximumLineCount: entryType === "long_text" ? 3 : 1 elide: Text.ElideRight + textFormat: Text.PlainText } } }