1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-16 08:05:19 -04:00

fix(Dock): Update Separate mode render to remove connected layer

This commit is contained in:
purian23
2026-05-16 15:13:05 -04:00
parent a8ab0b55f3
commit 05c7a77c8b
+3 -3
View File
@@ -18,7 +18,7 @@ PanelWindow {
screen: targetScreen screen: targetScreen
visible: _frameActive visible: _frameActive
updatesEnabled: _connectedActive updatesEnabled: _frameActive
WlrLayershell.namespace: "dms:frame" WlrLayershell.namespace: "dms:frame"
WlrLayershell.layer: WlrLayer.Top WlrLayershell.layer: WlrLayer.Top
@@ -205,7 +205,7 @@ PanelWindow {
id: _dockBodyBlurAnchor id: _dockBodyBlurAnchor
visible: false 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 x: _active ? win._dockState.bodyX + (win._dockSlide.x || 0) : 0
y: _active ? win._dockState.bodyY + (win._dockSlide.y || 0) : 0 y: _active ? win._dockState.bodyY + (win._dockSlide.y || 0) : 0
@@ -1323,7 +1323,7 @@ PanelWindow {
Item { Item {
id: _connectedChrome id: _connectedChrome
anchors.fill: parent anchors.fill: parent
visible: true visible: win._connectedActive
Item { Item {
id: _popoutChrome id: _popoutChrome