fix hover panel border hidden behind full-bleed content (mpris art)

This commit is contained in:
Damocles 2026-04-13 21:26:45 +02:00
parent 8f09492fc2
commit 5e91c86ab6

View file

@ -118,4 +118,18 @@ PanelWindow {
opacity: 0 opacity: 0
y: -height 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
}
} }