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-03-16 09:29:53 -0400
commit086cf72e809f0eca1a1d6349ae3b3d7bbbc85a59 (patch)
treef256155957f952fad71f524e278e88647d2e5b2f /modules
parentfix lock screen input rounding (diff)
downloadcaelestia-shell-086cf72e809f0eca1a1d6349ae3b3d7bbbc85a59.tar.gz
caelestia-shell-086cf72e809f0eca1a1d6349ae3b3d7bbbc85a59.tar.bz2
caelestia-shell-086cf72e809f0eca1a1d6349ae3b3d7bbbc85a59.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 7394bc2..eb93275 100644
--- a/modules/lock/Center.qml
+++ b/modules/lock/Center.qml
@@ -103,7 +103,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
}