summaryrefslogtreecommitdiff
path: root/modules/drawers/Backgrounds.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/drawers/Backgrounds.qml')
-rw-r--r--modules/drawers/Backgrounds.qml12
1 files changed, 10 insertions, 2 deletions
diff --git a/modules/drawers/Backgrounds.qml b/modules/drawers/Backgrounds.qml
index 94d8dee..017b883 100644
--- a/modules/drawers/Backgrounds.qml
+++ b/modules/drawers/Backgrounds.qml
@@ -2,6 +2,7 @@ import "root:/services"
import "root:/config"
import "root:/modules/osd" as Osd
import "root:/modules/notifications" as Notifications
+import "root:/modules/session" as Session
import Quickshell
import QtQuick
import QtQuick.Shapes
@@ -19,8 +20,8 @@ Shape {
Osd.Background {
wrapper: panels.osd
- startX: root.width
- startY: (root.height - panels.osd.height) / 2
+ startX: root.width - panels.session.width
+ startY: (root.height - wrapper.height) / 2
}
Notifications.Background {
@@ -29,4 +30,11 @@ Shape {
startX: root.width
startY: 0
}
+
+ Session.Background {
+ wrapper: panels.session
+
+ startX: root.width
+ startY: (root.height - wrapper.height) / 2
+ }
}