From 10d3b225021915c9239de2307f31274de4c561f6 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sun, 15 Feb 2026 11:03:15 -0500 Subject: [PATCH] lockscreen: Set correct colorset for notifications The notification widget should have the complementary color set because the background text is right above the wallpaper. --- shell/contents/lockscreen/NotificationsComponent.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/contents/lockscreen/NotificationsComponent.qml b/shell/contents/lockscreen/NotificationsComponent.qml index 30a4d6ad..151884e5 100644 --- a/shell/contents/lockscreen/NotificationsComponent.qml +++ b/shell/contents/lockscreen/NotificationsComponent.qml @@ -69,7 +69,7 @@ Loader { anchors.leftMargin: root.leftMargin anchors.rightMargin: root.rightMargin - Kirigami.Theme.colorSet: Kirigami.Theme.Window + Kirigami.Theme.colorSet: Kirigami.Theme.Complementary Kirigami.Theme.inherit: false height: Math.min(parent.height - root.topMargin - root.bottomMargin, notificationsList.listView.listHeight + Kirigami.Units.gridUnit) @@ -85,7 +85,7 @@ Loader { notificationSettings: root.notificationSettings panelType: MobileShell.PanelBackground.PanelType.Wallpaper inLockScreen: true - topPadding: root.topPadding // Kirigami.Units.gridUnit + topPadding: root.topPadding bottomPadding: Kirigami.Units.gridUnit listView.interactive: !root.scrollLock && listView.listOverflowing