Fix text field resetting text when replaced with a short string

Triggered by auto-filling a password with less than 16 characters from a
password manager.
This commit is contained in:
Salman Alshamrani
2024-12-23 18:15:59 -05:00
committed by Sam Lantinga
parent 10478c59db
commit bd7d4708e3

View File

@@ -633,7 +633,7 @@ static void SDLCALL SDL_HideHomeIndicatorHintChanged(void *userdata, const char
- (BOOL)textField:(UITextField *)_textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
if (textField.markedTextRange == nil) {
if (textField.text.length < 16) {
if ([string length] == 0 && textField.text.length < 16) {
[self resetTextState];
}
}