From 765f6d5a1f77cfd333810c093ba2a8e35b9603c4 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Fri, 22 Aug 2025 18:51:27 -0400 Subject: [PATCH] Proper hiding of ActiveWindow when no window is active --- Modules/Bar/Widgets/ActiveWindow.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/Bar/Widgets/ActiveWindow.qml b/Modules/Bar/Widgets/ActiveWindow.qml index bfadc79..8ca49dc 100644 --- a/Modules/Bar/Widgets/ActiveWindow.qml +++ b/Modules/Bar/Widgets/ActiveWindow.qml @@ -7,6 +7,7 @@ import qs.Commons import qs.Services import qs.Widgets + Row { id: root anchors.verticalCenter: parent.verticalCenter @@ -62,6 +63,7 @@ Row { Rectangle { // Let the Rectangle size itself based on its content (the Row) + visible: root.visible width: row.width + Style.marginM * scaling * 2 height: Math.round(Style.capsuleHeight * scaling) radius: Math.round(Style.radiusM * scaling)