From 4bf525ce0d3872c49083aadde7d062ea2cf094df Mon Sep 17 00:00:00 2001 From: bbedward Date: Tue, 5 Aug 2025 07:28:52 -0400 Subject: [PATCH] fix enum ref --- Modules/Dock/Dock.qml | 2 +- Modules/Notifications/Popup/NotificationPopup.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Dock/Dock.qml b/Modules/Dock/Dock.qml index 1b642ca7..93e3a4df 100644 --- a/Modules/Dock/Dock.qml +++ b/Modules/Dock/Dock.qml @@ -10,7 +10,7 @@ import qs.Widgets PanelWindow { id: dock - WlrLayershell.layer: WlrLayershell.TopLayer + WlrLayershell.layer: WlrLayershell.Top WlrLayershell.exclusiveZone: -1 WlrLayershell.keyboardFocus: WlrKeyboardFocus.None diff --git a/Modules/Notifications/Popup/NotificationPopup.qml b/Modules/Notifications/Popup/NotificationPopup.qml index df132f1f..bcc344e3 100644 --- a/Modules/Notifications/Popup/NotificationPopup.qml +++ b/Modules/Notifications/Popup/NotificationPopup.qml @@ -58,7 +58,7 @@ PanelWindow { } visible: hasValidData - WlrLayershell.layer: notificationData && notificationData.urgency === NotificationUrgency.Critical ? WlrLayershell.Overlay : WlrLayershell.TopLayer + WlrLayershell.layer: notificationData && notificationData.urgency === NotificationUrgency.Critical ? WlrLayershell.Overlay : WlrLayershell.Top WlrLayershell.exclusiveZone: -1 WlrLayershell.keyboardFocus: WlrKeyboardFocus.None color: "transparent"