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 id: audioman
anchor { anchor {
rect.x: lbar.width * 1.2 rect.x: lbar.width * 1.2
rect.y: lbar.width * 0.2
window: lbar window: lbar
} }
//gravity: Edges.Bottom | Edges.Right //gravity: Edges.Bottom | Edges.Right
color: "transparent" color: "transparent"
width: 500 width: screen?.width ?? display.width
height: 600 height: screen?.height ?? display.height
visible: false visible: false
property var player: Mpris.players.values.find(p => p.playbackState == MprisPlaybackState.Playing) ?? Mpris.players.values[0] property var player: Mpris.players.values.find(p => p.playbackState == MprisPlaybackState.Playing) ?? Mpris.players.values[0]
BRectangle { MouseArea {
id: bn 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 { Image {
id: background id: background
@ -96,4 +106,5 @@ PopupWindow {
} }
} }
} }
}
} }