From 8d947a6e95b8d21e101c43da779bc3aac33972f0 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 19 Feb 2026 09:11:30 -0500 Subject: [PATCH] dock: fix transparency setting fixes #1739 --- quickshell/Modules/Dock/Dock.qml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/quickshell/Modules/Dock/Dock.qml b/quickshell/Modules/Dock/Dock.qml index d30a9145..abe78cc6 100644 --- a/quickshell/Modules/Dock/Dock.qml +++ b/quickshell/Modules/Dock/Dock.qml @@ -553,15 +553,7 @@ Variants { Rectangle { anchors.fill: parent - color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, backgroundTransparency) - border.color: Theme.outlineMedium - border.width: 1 - radius: Theme.cornerRadius - } - - Rectangle { - anchors.fill: parent - color: Qt.rgba(Theme.surfaceTint.r, Theme.surfaceTint.g, Theme.surfaceTint.b, 0.04) + color: Theme.withAlpha(Theme.surfaceContainer, backgroundTransparency) radius: Theme.cornerRadius } }