summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-12 12:47:00 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-12 12:47:00 -0500
commitf913a17203bdd638536cad1232c379051214e11b (patch)
tree3d9881969bfe121a2dc0d6e9d9d328754f0b4069 /modules
parentfix lock screen input rounding (diff)
downloadcaelestia-shell-f913a17203bdd638536cad1232c379051214e11b.tar.gz
caelestia-shell-f913a17203bdd638536cad1232c379051214e11b.tar.bz2
caelestia-shell-f913a17203bdd638536cad1232c379051214e11b.zip
remove default paths
Diffstat (limited to 'modules')
-rw-r--r--modules/lock/Center.qml2
-rw-r--r--modules/lock/LockSurface.qml4
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml
index 5885252..4e2215b 100644
--- a/modules/lock/Center.qml
+++ b/modules/lock/Center.qml
@@ -104,7 +104,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 be41147..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 * 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 * Config.lock.sizes.heightMult
+ to: root.screen?.height * Config.lock.sizes.heightMult
duration: Appearance.anim.durations.expressiveDefaultSpatial
easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
}