diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-10 23:20:16 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-10 23:20:16 +1000 |
| commit | 8392fbd8c75c1c3be269090c81a29a5628f44190 (patch) | |
| tree | 6938a1690b6fe715e377747d381fb258538fc38f /modules/lock/LockSurface.qml | |
| parent | lock: add weather (diff) | |
| download | caelestia-shell-8392fbd8c75c1c3be269090c81a29a5628f44190.tar.gz caelestia-shell-8392fbd8c75c1c3be269090c81a29a5628f44190.tar.bz2 caelestia-shell-8392fbd8c75c1c3be269090c81a29a5628f44190.zip | |
lock: fix size
Diffstat (limited to 'modules/lock/LockSurface.qml')
| -rw-r--r-- | modules/lock/LockSurface.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/lock/LockSurface.qml b/modules/lock/LockSurface.qml index ef07f39..1062074 100644 --- a/modules/lock/LockSurface.qml +++ b/modules/lock/LockSurface.qml @@ -138,14 +138,14 @@ WlSessionLockSurface { Anim { target: lockBg property: "implicitWidth" - to: root.height * Config.lock.sizes.heightMult * Config.lock.sizes.ratio + to: root.screen.height * Config.lock.sizes.heightMult * Config.lock.sizes.ratio duration: Appearance.anim.durations.expressiveDefaultSpatial easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } Anim { target: lockBg property: "implicitHeight" - to: root.height * Config.lock.sizes.heightMult + to: root.screen.height * Config.lock.sizes.heightMult duration: Appearance.anim.durations.expressiveDefaultSpatial easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } |