From 5e91c86ab61affb41417f769b1e7637428144f8e Mon Sep 17 00:00:00 2001 From: Damocles Date: Mon, 13 Apr 2026 21:26:45 +0200 Subject: [PATCH] fix hover panel border hidden behind full-bleed content (mpris art) --- modules/HoverPanel.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/modules/HoverPanel.qml b/modules/HoverPanel.qml index 01a68d5..5935c40 100644 --- a/modules/HoverPanel.qml +++ b/modules/HoverPanel.qml @@ -118,4 +118,18 @@ PanelWindow { opacity: 0 y: -height } + + // Border overlay — drawn on top of content so full-bleed items (e.g. album art) don't cover it + Rectangle { + x: panelContent.x + y: panelContent.y + width: panelContent.width + height: panelContent.height + color: "transparent" + border.color: root.accentColor + border.width: 1 + bottomLeftRadius: M.Theme.radius + bottomRightRadius: M.Theme.radius + opacity: panelContent.opacity + } }