1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-04 04:42:05 -04:00

fix(layers): change layers namespace for desktop widgets and plugin popouts (#1594)

This commit is contained in:
claymorwan
2026-02-05 14:18:47 +00:00
committed by GitHub
parent 60b824e7a4
commit fff018eafb
2 changed files with 5 additions and 5 deletions

View File

@@ -287,7 +287,7 @@ Item {
mask: root.clickThrough ? emptyMask : null
WlrLayershell.namespace: "quickshell:desktop-widget:" + root.pluginId + (root.instanceId ? ":" + root.instanceId : "")
WlrLayershell.namespace: "dms:desktop-widget:" + root.pluginId + (root.instanceId ? ":" + root.instanceId : "")
WlrLayershell.layer: {
if (root.isInteracting && !CompositorService.useHyprlandFocusGrab)
return WlrLayer.Overlay;
@@ -549,7 +549,7 @@ Item {
mask: Region {}
WlrLayershell.namespace: "quickshell:desktop-widget-preview"
WlrLayershell.namespace: "dms:desktop-widget-preview"
WlrLayershell.layer: WlrLayer.Bottom
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
@@ -629,7 +629,7 @@ Item {
mask: Region {}
WlrLayershell.namespace: "quickshell:desktop-widget-grid"
WlrLayershell.namespace: "dms:desktop-widget-grid"
WlrLayershell.layer: root.overviewActive && (root.showOnOverview || root.showOnOverviewOnly) ? WlrLayer.Overlay : WlrLayer.Background
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.keyboardFocus: WlrKeyboardFocus.None
@@ -675,7 +675,7 @@ Item {
screen: root.screen
color: "transparent"
WlrLayershell.namespace: "quickshell:desktop-widget-helper"
WlrLayershell.namespace: "dms:desktop-widget-helper"
WlrLayershell.layer: WlrLayer.Overlay
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.keyboardFocus: WlrKeyboardFocus.None

View File

@@ -5,7 +5,7 @@ import qs.Widgets
DankPopout {
id: root
layerNamespace: "dms-plugin:" + layerNamespacePlugin
layerNamespace: "dms:plugins:" + layerNamespacePlugin
property var triggerScreen: null
property Component pluginContent: null