summaryrefslogtreecommitdiff
path: root/modules/lock
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-10 23:20:16 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-10 23:20:16 +1000
commit8392fbd8c75c1c3be269090c81a29a5628f44190 (patch)
tree6938a1690b6fe715e377747d381fb258538fc38f /modules/lock
parentlock: add weather (diff)
downloadcaelestia-shell-8392fbd8c75c1c3be269090c81a29a5628f44190.tar.gz
caelestia-shell-8392fbd8c75c1c3be269090c81a29a5628f44190.tar.bz2
caelestia-shell-8392fbd8c75c1c3be269090c81a29a5628f44190.zip
lock: fix size
Diffstat (limited to 'modules/lock')
-rw-r--r--modules/lock/LockSurface.qml4
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
}