From ff5c46a4294e1bd99809635797d9c763c191f1f5 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 8 Apr 2026 17:07:35 +1000 Subject: [PATCH] fix: don't exclude panels from group based on size Most panels do not change size either way, and doing this removes the close sink effect --- modules/drawers/ContentWindow.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/drawers/ContentWindow.qml b/modules/drawers/ContentWindow.qml index f914be2d..113a3fea 100644 --- a/modules/drawers/ContentWindow.qml +++ b/modules/drawers/ContentWindow.qml @@ -289,7 +289,7 @@ StyledWindow { required property Item panel property real deformAmount: 0.15 - group: panel.width > 0 && panel.height > 0 ? blobGroup : null + group: blobGroup x: panel.x + bar.implicitWidth y: panel.y + root.borderThickness implicitWidth: panel.width