diff --git a/look-and-feel/contents/lockscreen/LockScreen.qml b/look-and-feel/contents/lockscreen/LockScreen.qml index 79b10702..8a4c9fe6 100644 --- a/look-and-feel/contents/lockscreen/LockScreen.qml +++ b/look-and-feel/contents/lockscreen/LockScreen.qml @@ -60,23 +60,19 @@ PlasmaCore.ColorScope { cached: true anchors.fill: parent source: wallpaper - visible: true + radius: 50 + opacity: 0 property bool doBlur: notificationsShown || isPinDrawerOpen() // only blur once animation finished for performance Behavior on doBlur { NumberAnimation { target: blur - property: "radius" + property: "opacity" duration: 1000 - to: blur.doBlur ? 0 : 50 + to: blur.doBlur ? 0 : 1 easing.type: Easing.InOutQuad } - PropertyAction { - target: blur - property: "visible" - value: blur.doBlur - } } }