From bbe0329df4d462449db666bdfa10ee15be3ad8e8 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 15 Nov 2025 17:29:48 +0100 Subject: [PATCH] add radius to barbutton --- dots/.config/quickshell/ii/modules/waffle/bar/BarButton.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/waffle/bar/BarButton.qml b/dots/.config/quickshell/ii/modules/waffle/bar/BarButton.qml index 65ef521c4..c98d57baf 100644 --- a/dots/.config/quickshell/ii/modules/waffle/bar/BarButton.qml +++ b/dots/.config/quickshell/ii/modules/waffle/bar/BarButton.qml @@ -37,6 +37,7 @@ Button { } } + colBackgroundBorder: ColorUtils.transparentize(Looks.colors.bg1Border, root.checked ? Looks.contentTransparency : 1) colBackground: { if (root.down) { return Looks.colors.bg1Active @@ -46,7 +47,6 @@ Button { return ColorUtils.transparentize(Looks.colors.bg1) } } - colBackgroundBorder: ColorUtils.transparentize(Looks.colors.bg1Border, root.checked ? Looks.contentTransparency : 1) MouseArea { anchors.fill: parent @@ -67,6 +67,7 @@ Button { background: AcrylicRectangle { shiny: ((root.hovered && !root.down) || root.checked) color: root.colBackground + radius: Looks.radius.medium border.width: 1 border.color: root.colBackgroundBorder