From ce8b46ecf383c09adf238289c9a4a74bc750105e Mon Sep 17 00:00:00 2001 From: David Edmundson Date: Thu, 12 May 2022 17:19:00 +0300 Subject: [PATCH] Fix typo in notifications binding Inroduced in f5d9e5d5a292efce71a1c051e0a1e20a3bc70029 --- lookandfeel/contents/lockscreen/LockScreenUi.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lookandfeel/contents/lockscreen/LockScreenUi.qml b/lookandfeel/contents/lockscreen/LockScreenUi.qml index 6dac3d42a..ee9c448b2 100644 --- a/lookandfeel/contents/lockscreen/LockScreenUi.qml +++ b/lookandfeel/contents/lockscreen/LockScreenUi.qml @@ -281,8 +281,8 @@ PlasmaCore.ColorScope { if (keystateSource.data["Caps Lock"]["Locked"]) { parts.push(i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Caps Lock is on")); } - if (root.notificationMessage) { - parts.push(root.notificationMessage); + if (root.notification) { + parts.push(root.notification); } return parts.join(" • "); }