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 + } }