From 05c7a77c8bb895fc61f759b05ab477306395192b Mon Sep 17 00:00:00 2001 From: purian23 Date: Sat, 16 May 2026 15:13:05 -0400 Subject: [PATCH] fix(Dock): Update Separate mode render to remove connected layer --- quickshell/Modules/Frame/FrameWindow.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickshell/Modules/Frame/FrameWindow.qml b/quickshell/Modules/Frame/FrameWindow.qml index 4a3568ce..e3794b8c 100644 --- a/quickshell/Modules/Frame/FrameWindow.qml +++ b/quickshell/Modules/Frame/FrameWindow.qml @@ -18,7 +18,7 @@ PanelWindow { screen: targetScreen visible: _frameActive - updatesEnabled: _connectedActive + updatesEnabled: _frameActive WlrLayershell.namespace: "dms:frame" WlrLayershell.layer: WlrLayer.Top @@ -205,7 +205,7 @@ PanelWindow { id: _dockBodyBlurAnchor visible: false - readonly property bool _active: win._dockState.reveal && win._dockState.bodyW > 0 && win._dockState.bodyH > 0 + readonly property bool _active: win._connectedActive && win._dockState.reveal && win._dockState.bodyW > 0 && win._dockState.bodyH > 0 x: _active ? win._dockState.bodyX + (win._dockSlide.x || 0) : 0 y: _active ? win._dockState.bodyY + (win._dockSlide.y || 0) : 0 @@ -1323,7 +1323,7 @@ PanelWindow { Item { id: _connectedChrome anchors.fill: parent - visible: true + visible: win._connectedActive Item { id: _popoutChrome