From 65eeea7ffa7affd06010b39b8d4b7c922e10e905 Mon Sep 17 00:00:00 2001 From: "3N1GM4.ExE" Date: Tue, 3 Mar 2026 17:50:39 +0100 Subject: [PATCH] fix(quickshell): fix qs crashing when sidebar is detached while in use This is a small fix that removes the left sidebar from the focus grab system before destroying the panel. --- .../.config/quickshell/ii/modules/ii/sidebarLeft/SidebarLeft.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/.config/quickshell/ii/modules/ii/sidebarLeft/SidebarLeft.qml b/dots/.config/quickshell/ii/modules/ii/sidebarLeft/SidebarLeft.qml index 1952557bc..d58deb3f1 100644 --- a/dots/.config/quickshell/ii/modules/ii/sidebarLeft/SidebarLeft.qml +++ b/dots/.config/quickshell/ii/modules/ii/sidebarLeft/SidebarLeft.qml @@ -67,6 +67,7 @@ Scope { // Scope onDetachChanged: { if (root.detach) { + GlobalFocusGrab.removeDismissable(sidebarLoader.item) // Remove sidebar from the focus grab system sidebarContent.parent = null; // Detach content from sidebar sidebarLoader.active = false; // Unload sidebar detachedSidebarLoader.active = true; // Load detached window