feat: make audio manager closable when clicking anywhere

This commit is contained in:
Nydragon 2024-09-27 19:41:11 +02:00
parent 37cc9423d7
commit 1b55777da1
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g

View file

@ -11,23 +11,33 @@ PopupWindow {
id: audioman
anchor {
rect.x: lbar.width * 1.2
rect.y: lbar.width * 0.2
window: lbar
}
//gravity: Edges.Bottom | Edges.Right
color: "transparent"
width: 500
height: 600
width: screen?.width ?? display.width
height: screen?.height ?? display.height
visible: false
property var player: Mpris.players.values.find(p => p.playbackState == MprisPlaybackState.Playing) ?? Mpris.players.values[0]
BRectangle {
id: bn
MouseArea {
anchors.fill: parent
onClicked: () => {
console.log("clicked");
audioman.visible = false;
}
//color: "transparent"
BRectangle {
id: display
x: lbar.width * 1.2
y: lbar.height * 0.2
width: 500
height: 600
Image {
id: background
@ -97,3 +107,4 @@ PopupWindow {
}
}
}
}