From 3916512d66219f83a2e1defa3a92ec865961dd42 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sat, 15 Nov 2025 21:46:34 -0500 Subject: [PATCH] systemtray: fix erroneous undefined condition --- quickshell/Modules/DankBar/Widgets/SystemTrayBar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/DankBar/Widgets/SystemTrayBar.qml b/quickshell/Modules/DankBar/Widgets/SystemTrayBar.qml index 9ed9d95e..645fb410 100644 --- a/quickshell/Modules/DankBar/Widgets/SystemTrayBar.qml +++ b/quickshell/Modules/DankBar/Widgets/SystemTrayBar.qml @@ -1088,7 +1088,7 @@ Item { width: 16 height: 16 anchors.verticalCenter: parent.verticalCenter - visible: menuEntry?.icon && menuEntry.icon !== "" + visible: (menuEntry?.icon ?? "") !== "" Image { anchors.fill: parent