From ae939519005a5d172d39e690a30ef2b482155672 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Tue, 19 Aug 2025 08:15:34 -0400 Subject: [PATCH] Tray: proper fix for hiding the capsule when no apps are in the tray --- Modules/Bar/Tray.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Bar/Tray.qml b/Modules/Bar/Tray.qml index d05da25..9cd4edf 100644 --- a/Modules/Bar/Tray.qml +++ b/Modules/Bar/Tray.qml @@ -12,7 +12,7 @@ import qs.Widgets Rectangle { readonly property real itemSize: 24 * scaling - visible: Settings.data.bar.showTray && SystemTray.items.length > 0 + visible: Settings.data.bar.showTray && (SystemTray.items.values.length > 0) width: tray.width + Style.marginM * scaling * 2 height: Math.round(Style.capsuleHeight * scaling)