diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-01-12 12:47:00 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-01-22 08:35:10 -0500 |
| commit | e90758a7e4b8c20c5c34fcb3f975b1a09ae7e691 (patch) | |
| tree | 892354288930871d472084401b2d14b2bad7b0db /modules | |
| parent | fix lock screen input rounding (diff) | |
| download | caelestia-shell-e90758a7e4b8c20c5c34fcb3f975b1a09ae7e691.tar.gz caelestia-shell-e90758a7e4b8c20c5c34fcb3f975b1a09ae7e691.tar.bz2 caelestia-shell-e90758a7e4b8c20c5c34fcb3f975b1a09ae7e691.zip | |
remove default paths
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/lock/Center.qml | 2 | ||||
| -rw-r--r-- | modules/lock/LockSurface.qml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml index 2c938cb..a120f5b 100644 --- a/modules/lock/Center.qml +++ b/modules/lock/Center.qml @@ -102,7 +102,7 @@ ColumnLayout { id: pfp anchors.fill: parent - source: Paths.face ?? "" + source: Paths.face } } diff --git a/modules/lock/LockSurface.qml b/modules/lock/LockSurface.qml index c706067..0c3ce69 100644 --- a/modules/lock/LockSurface.qml +++ b/modules/lock/LockSurface.qml @@ -145,14 +145,14 @@ WlSessionLockSurface { Anim { target: lockContent property: "implicitWidth" - to: (root.screen?.height ?? 0) * 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: lockContent property: "implicitHeight" - to: (root.screen?.height ?? 0) * Config.lock.sizes.heightMult + to: root.screen?.height * Config.lock.sizes.heightMult duration: Appearance.anim.durations.expressiveDefaultSpatial easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } |