From 0e0bcd4617d2d6895515fe37b888ab86fcdd6fb7 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 20 May 2025 10:45:47 +0200 Subject: [PATCH] media controls: fix rounding --- .config/quickshell/modules/mediaControls/PlayerControl.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/modules/mediaControls/PlayerControl.qml b/.config/quickshell/modules/mediaControls/PlayerControl.qml index 3ee445bb8..c65cd37f8 100644 --- a/.config/quickshell/modules/mediaControls/PlayerControl.qml +++ b/.config/quickshell/modules/mediaControls/PlayerControl.qml @@ -126,8 +126,8 @@ Item { // Player instance layer.enabled: true layer.effect: OpacityMask { maskSource: Rectangle { - width: blurredArt.width - height: blurredArt.height + width: background.width + height: background.height radius: root.popupRounding } }