summaryrefslogtreecommitdiff
path: root/modules/lock/InputField.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-23 20:43:04 +1000
committerGitHub <noreply@github.com>2025-08-23 20:43:04 +1000
commitaea57958326360a1dc15509c02397594da20538e (patch)
treed3a4626e7246f93ae420f500a8b189ee0342b074 /modules/lock/InputField.qml
parentbar: add idle inhibitor (#459) (diff)
downloadcaelestia-shell-aea57958326360a1dc15509c02397594da20538e.tar.gz
caelestia-shell-aea57958326360a1dc15509c02397594da20538e.tar.bz2
caelestia-shell-aea57958326360a1dc15509c02397594da20538e.zip
lock: add fprint support (#429)
* lock: add fprint support * lock: better fprint detection * lock: cap error retries * nix: fix fprint pam for nix * lock: reset fprint tries * lock: minor pam fixes Delay fprint error retries Reset fprint error retries on lock * lock: loading indicator passwd state Instead of fprint state cause no way of detecting that * dashboard: better visualiser * lock: better fprint availability check * lock: better in/out anim Animating layout sizes is a bad idea :woe: Use scale instead * lock: add better error/fail messages * lock: less fprint icon states Already shown by message * lock: fix fprint reset * lock: include passwd pam * lock: flash message on change * lock: fix message anim Also wrap message instead of eliding * lock: better messages for no fprint
Diffstat (limited to 'modules/lock/InputField.qml')
-rw-r--r--modules/lock/InputField.qml8
1 files changed, 2 insertions, 6 deletions
diff --git a/modules/lock/InputField.qml b/modules/lock/InputField.qml
index 9472d41..9360a1e 100644
--- a/modules/lock/InputField.qml
+++ b/modules/lock/InputField.qml
@@ -40,19 +40,15 @@ Item {
anchors.centerIn: parent
text: {
- if (root.pam.active)
+ if (root.pam.passwd.active)
return qsTr("Loading...");
- if (root.pam.state === "error")
- return qsTr("An error occured");
if (root.pam.state === "max")
return qsTr("You have reached the maximum number of tries");
- if (root.pam.state === "fail")
- return qsTr("Incorrect password");
return qsTr("Enter your password");
}
animate: true
- color: root.pam.active ? Colours.palette.m3secondary : root.pam.state ? Colours.palette.m3error : Colours.palette.m3outline
+ color: root.pam.passwd.active ? Colours.palette.m3secondary : Colours.palette.m3outline
font.pointSize: Appearance.font.size.normal
font.family: Appearance.font.family.mono