lock: fix space inputs

This commit is contained in:
2 * r + 2 * t 2025-06-25 00:19:15 +10:00
parent ad93617ee8
commit 9da75ed626

View file

@ -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;
}