config fixes

This commit is contained in:
Zacharias-Brohn
2026-02-17 12:46:25 +01:00
parent 7d9ba3d570
commit e818ac5515
39 changed files with 888 additions and 144 deletions
+11 -1
View File
@@ -7,6 +7,7 @@ import qs.Modules.Notifications.Sidebar as Sidebar
import qs.Modules.Notifications.Sidebar.Utils as Utils
import qs.Modules.Dashboard as Dashboard
import qs.Modules.Osd as Osd
import qs.Components.Toast as Toasts
import qs.Config
Item {
@@ -22,6 +23,7 @@ Item {
readonly property alias utilities: utilities
readonly property alias dashboard: dashboard
readonly property alias osd: osd
readonly property alias toasts: toasts
anchors.fill: parent
// anchors.margins: 8
@@ -30,7 +32,7 @@ Item {
Osd.Wrapper {
id: osd
clip: session.width > 0 || sidebar.width > 0
clip: sidebar.width > 0
screen: root.screen
visibilities: root.visibilities
@@ -55,6 +57,14 @@ Item {
}
}
Toasts.Toasts {
id: toasts
anchors.bottom: sidebar.visible ? parent.bottom : utilities.top
anchors.right: sidebar.left
anchors.margins: Appearance.padding.normal
}
Notifications.Wrapper {
id: notifications