From fd873ff7c1cd276f83935d8a334763e885177c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hasan=20A=2E=20Tekeo=C4=9Flu?= <55619655+tekeoglan@users.noreply.github.com> Date: Tue, 1 Jul 2025 05:29:10 +0300 Subject: [PATCH] fix(): WeatherBar pushing MiddleSection to the left --- .config/quickshell/modules/bar/Bar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/modules/bar/Bar.qml b/.config/quickshell/modules/bar/Bar.qml index 192dcb504..b88a89476 100644 --- a/.config/quickshell/modules/bar/Bar.qml +++ b/.config/quickshell/modules/bar/Bar.qml @@ -330,7 +330,7 @@ Scope { anchors.right: parent.right implicitHeight: Appearance.sizes.baseBarHeight height: Appearance.sizes.barHeight - width: (barRoot.width - middleSection.width) / 2 + width: barRoot.width - (barLeftSideMouseArea.width + middleSection.width + weatherLoader.width) property bool hovered: false property real lastScrollX: 0