From bf6e5fafea62dc6e06c7384eae1e68ab61de2b17 Mon Sep 17 00:00:00 2001 From: Sighthesia <87855491+Sighthesia@users.noreply.github.com> Date: Thu, 19 Jun 2025 20:35:10 +0800 Subject: [PATCH] Bar.qml: Fix round decorators transparency and visibility consistency with bar --- .config/quickshell/modules/bar/Bar.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/quickshell/modules/bar/Bar.qml b/.config/quickshell/modules/bar/Bar.qml index 925ac1406..569574094 100644 --- a/.config/quickshell/modules/bar/Bar.qml +++ b/.config/quickshell/modules/bar/Bar.qml @@ -456,6 +456,7 @@ Scope { bottom: ConfigOptions.bar.bottom ? barContent.top : undefined } height: Appearance.rounding.screenRounding + visible: showBarBackground RoundCorner { anchors.top: parent.top @@ -463,6 +464,7 @@ Scope { size: Appearance.rounding.screenRounding corner: ConfigOptions.bar.bottom ? cornerEnum.bottomLeft : cornerEnum.topLeft color: showBarBackground ? Appearance.colors.colLayer0 : "transparent" + opacity: 1.0 - Appearance.transparency } RoundCorner { anchors.top: parent.top @@ -470,6 +472,7 @@ Scope { size: Appearance.rounding.screenRounding corner: ConfigOptions.bar.bottom ? cornerEnum.bottomRight : cornerEnum.topRight color: showBarBackground ? Appearance.colors.colLayer0 : "transparent" + opacity: 1.0 - Appearance.transparency } }