summaryrefslogtreecommitdiff
path: root/modules/lock/Input.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-25 00:19:15 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-25 00:19:15 +1000
commit9da75ed6266d9d12a6082548fc49a11e508a80d0 (patch)
treeb80137821dc51e840d26ab169f2bb857ecf1f03d /modules/lock/Input.qml
parentinternal: add env for beat detector path (diff)
downloadcaelestia-shell-9da75ed6266d9d12a6082548fc49a11e508a80d0.tar.gz
caelestia-shell-9da75ed6266d9d12a6082548fc49a11e508a80d0.tar.bz2
caelestia-shell-9da75ed6266d9d12a6082548fc49a11e508a80d0.zip
lock: fix space inputs
Diffstat (limited to 'modules/lock/Input.qml')
-rw-r--r--modules/lock/Input.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/lock/Input.qml b/modules/lock/Input.qml
index 578ead0..c9c1431 100644
--- a/modules/lock/Input.qml
+++ b/modules/lock/Input.qml
@@ -98,7 +98,7 @@ ColumnLayout {
} else {
root.passwordBuffer = root.passwordBuffer.slice(0, -1);
}
- } else if ("abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) {
+ } else if (" abcdefghijklmnopqrstuvwxyz1234567890`~!@#$%^&*()-_=+[{]}\\|;:'\",<.>/?".includes(event.text.toLowerCase())) {
charList.bindImWidth();
root.passwordBuffer += event.text;
}