lockscreen: Set correct colorset for notifications

The notification widget should have the complementary color set because the background text is right above the wallpaper.
This commit is contained in:
Devin Lin 2026-02-15 11:03:15 -05:00
parent ab051170bd
commit 10d3b22502

View file

@ -69,7 +69,7 @@ Loader {
anchors.leftMargin: root.leftMargin anchors.leftMargin: root.leftMargin
anchors.rightMargin: root.rightMargin anchors.rightMargin: root.rightMargin
Kirigami.Theme.colorSet: Kirigami.Theme.Window Kirigami.Theme.colorSet: Kirigami.Theme.Complementary
Kirigami.Theme.inherit: false Kirigami.Theme.inherit: false
height: Math.min(parent.height - root.topMargin - root.bottomMargin, notificationsList.listView.listHeight + Kirigami.Units.gridUnit) height: Math.min(parent.height - root.topMargin - root.bottomMargin, notificationsList.listView.listHeight + Kirigami.Units.gridUnit)
@ -85,7 +85,7 @@ Loader {
notificationSettings: root.notificationSettings notificationSettings: root.notificationSettings
panelType: MobileShell.PanelBackground.PanelType.Wallpaper panelType: MobileShell.PanelBackground.PanelType.Wallpaper
inLockScreen: true inLockScreen: true
topPadding: root.topPadding // Kirigami.Units.gridUnit topPadding: root.topPadding
bottomPadding: Kirigami.Units.gridUnit bottomPadding: Kirigami.Units.gridUnit
listView.interactive: !root.scrollLock && listView.listOverflowing listView.interactive: !root.scrollLock && listView.listOverflowing