feat: round corners auf audioman
This commit is contained in:
parent
b9215cdc92
commit
98c0308a52
2 changed files with 21 additions and 5 deletions
|
@ -1,5 +1,3 @@
|
|||
//@ pragma UseQApplication
|
||||
|
||||
import Quickshell
|
||||
|
||||
// for ShellRoot and PanelWindow
|
||||
|
|
|
@ -25,7 +25,7 @@ PopupWindow {
|
|||
anchors.fill: parent
|
||||
onClicked: audioman.visible = false
|
||||
|
||||
BRectangle {
|
||||
Rectangle {
|
||||
id: display
|
||||
|
||||
x: lbar.width * 1.2
|
||||
|
@ -33,16 +33,17 @@ PopupWindow {
|
|||
|
||||
width: 500
|
||||
height: 600
|
||||
|
||||
color: "transparent"
|
||||
Image {
|
||||
id: background
|
||||
anchors.fill: parent
|
||||
source: Player.current?.trackArtUrl ?? ""
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
visible: true
|
||||
visible: false
|
||||
}
|
||||
|
||||
MultiEffect {
|
||||
id: image
|
||||
autoPaddingEnabled: false
|
||||
source: background
|
||||
anchors.fill: background
|
||||
|
@ -51,6 +52,23 @@ PopupWindow {
|
|||
blurMultiplier: 2
|
||||
blur: 1
|
||||
brightness: -0.15
|
||||
maskEnabled: true
|
||||
maskSource: mask
|
||||
}
|
||||
|
||||
Item {
|
||||
id: mask
|
||||
width: image.width
|
||||
height: image.height
|
||||
layer.enabled: true
|
||||
visible: false
|
||||
|
||||
Rectangle {
|
||||
width: image.width
|
||||
height: image.height
|
||||
radius: 10
|
||||
color: "black"
|
||||
}
|
||||
}
|
||||
|
||||
ScrollView {
|
||||
|
|
Loading…
Add table
Reference in a new issue