From df9070296b6464a35b3b330294472dde983e036c Mon Sep 17 00:00:00 2001 From: Damocles Date: Wed, 15 Apr 2026 22:21:51 +0200 Subject: [PATCH] fix: use pinned icon variant when panel is pinned --- modules/HoverPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/HoverPanel.qml b/modules/HoverPanel.qml index e8aebd0..20690df 100644 --- a/modules/HoverPanel.qml +++ b/modules/HoverPanel.qml @@ -244,7 +244,7 @@ PanelWindow { Text { anchors.centerIn: parent - text: "\uEB3F" + text: root._pinned ? "\uEB40" : "\uEB3F" color: root._pinned ? root.accentColor : M.Theme.base04 font.pixelSize: M.Theme.fontSize - 1 font.family: M.Theme.iconFontFamily