From efd09ae86eb5c089c5873c4dfb717af7b081d1fa Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 30 Apr 2025 14:10:48 +1000 Subject: bar: fix workspaces anims Also fix hyprland undef error --- services/Hyprland.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'services') diff --git a/services/Hyprland.qml b/services/Hyprland.qml index f47c0cb..286bee3 100644 --- a/services/Hyprland.qml +++ b/services/Hyprland.qml @@ -49,7 +49,7 @@ Singleton { const len = rClients.length; for (let i = 0; i < len; i++) { const client = rClients[i]; - if (!clients.find(c => c.address === client.address)) + if (!clients.find(c => c.address === client?.address)) rClients.splice(i, 1); } -- cgit v1.2.3-freya