diff --git a/lookandfeel/contents/lockscreen/LockScreenUi.qml b/lookandfeel/contents/lockscreen/LockScreenUi.qml index eecaa56a5..7e1a96a7f 100644 --- a/lookandfeel/contents/lockscreen/LockScreenUi.qml +++ b/lookandfeel/contents/lockscreen/LockScreenUi.qml @@ -29,7 +29,10 @@ PlasmaCore.ColorScope { Connections { target: authenticator function onFailed() { - root.notification = i18nd("plasma_lookandfeel_org.kde.lookandfeel","Unlocking failed"); + if (root.notification) { + root.notification += "\n" + } + root.notification += i18nd("plasma_lookandfeel_org.kde.lookandfeel","Unlocking failed"); } function onGraceLockedChanged() { if (!authenticator.graceLocked) { @@ -38,10 +41,10 @@ PlasmaCore.ColorScope { } } function onMessage(msg) { - root.notification = msg; + root.notification += msg; } function onError(err) { - root.notification = err; + root.notification += err; } }