mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-05 19:08:12 +00:00
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:

committed by
Sam Lantinga

parent
10478c59db
commit
bd7d4708e3
@@ -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];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user