From 98c0308a52d401c7db8eb28239bb1177038f4ed5 Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sat, 28 Sep 2024 02:33:18 +0200 Subject: [PATCH] feat: round corners auf audioman --- src/shell.qml | 2 -- src/windows/audioman/AudioManager.qml | 24 +++++++++++++++++++++--- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/shell.qml b/src/shell.qml index bb16e3e..5b28345 100644 --- a/src/shell.qml +++ b/src/shell.qml @@ -1,5 +1,3 @@ -//@ pragma UseQApplication - import Quickshell // for ShellRoot and PanelWindow diff --git a/src/windows/audioman/AudioManager.qml b/src/windows/audioman/AudioManager.qml index 05c4dd0..a4b2e32 100644 --- a/src/windows/audioman/AudioManager.qml +++ b/src/windows/audioman/AudioManager.qml @@ -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 {