From d6820bed1574a214a1832cb744cbf42ba19d00e5 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 23 May 2025 14:08:57 +0800 Subject: [PATCH] hyprland: fix null error --- services/Hyprland.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/Hyprland.qml b/services/Hyprland.qml index 7a2538e9..dc24080e 100644 --- a/services/Hyprland.qml +++ b/services/Hyprland.qml @@ -93,7 +93,7 @@ Singleton { root.activeClient = clientComp.createObject(root, { lastIpcObject: client }); - } else { + } else if (rClient) { rClient.destroy(); root.activeClient = null; }