From 6d036e972d144c09790c736b0d63375f6a7cd9d2 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 27 May 2025 09:02:19 +0200 Subject: [PATCH] search: change highlighting to underline --- .config/quickshell/modules/overview/SearchItem.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/modules/overview/SearchItem.qml b/.config/quickshell/modules/overview/SearchItem.qml index 72b647747..3fad2ae3e 100644 --- a/.config/quickshell/modules/overview/SearchItem.qml +++ b/.config/quickshell/modules/overview/SearchItem.qml @@ -26,8 +26,8 @@ RippleButton { property string itemClickActionName: entry?.clickActionName property string materialSymbol: entry?.materialSymbol ?? "" - property string highlightPrefix: `` - property string highlightSuffix: `` + property string highlightPrefix: `` + property string highlightSuffix: `` function highlightContent(content, query) { if (!query || query.length === 0 || content == query || fontType === "monospace") return StringUtils.escapeHtml(content);