From 403f7aa6856539e5c232387d0dc904e465369418 Mon Sep 17 00:00:00 2001 From: lnb Date: Tue, 12 May 2026 12:04:28 +0530 Subject: [PATCH] fix: show escaped text for selected entry in clipboard --- dots/.config/quickshell/ii/modules/ii/overview/SearchItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/ii/overview/SearchItem.qml b/dots/.config/quickshell/ii/modules/ii/overview/SearchItem.qml index 6ca0f43b5..42649b9a3 100644 --- a/dots/.config/quickshell/ii/modules/ii/overview/SearchItem.qml +++ b/dots/.config/quickshell/ii/modules/ii/overview/SearchItem.qml @@ -226,7 +226,7 @@ RippleButton { color: root.colForeground horizontalAlignment: Text.AlignLeft elide: Text.ElideRight - text: root.selected ? root.itemName : root.displayContent + text: root.selected ? StringUtils.escapeHtml(root.itemName) : root.displayContent } } Loader { // Clipboard image preview