Explain hardcoded hintchars

This commit is contained in:
Oliver Blanthorn 2026-07-27 19:55:35 +02:00
parent c8103dc0f6
commit cf78876e33
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3

View file

@ -617,7 +617,7 @@ function defaultHintChars() {
return "1234567890"
}
if (config.get("hintnames") === "words") {
return "abcdefghijklmnopqrstuvwxyz"
return "abcdefghijklmnopqrstuvwxyz" // protect users from changing hintchars and not being able to type the words
}
return config.get("hintchars")
}