From 1fe219e215667f1a90640053d9aae39714f3bc90 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 8 Mar 2026 18:15:25 +0100 Subject: [PATCH] hefty: bar: fix wrong placement of center-right group --- .../quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml index a388cdb62..7b1e5d6d3 100644 --- a/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml +++ b/dots/.config/quickshell/ii/modules/hefty/topLayer/bar/HBarContent.qml @@ -46,7 +46,7 @@ Item { Side { id: centerRightSide anchors.left: !root.vertical ? centerSide.right : parent.left - anchors.top: root.vertical ? parent.top : centerSide.bottom + anchors.top: !root.vertical ? parent.top : centerSide.bottom HBarUserFallbackComponentRepeater { componentNames: [...(root.centerLeftWidgets.length > 0 ? [invisibleItem] : []), ...root.centerRightWidgets,] }