-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keyboard doesn't clear out last character from KeyboardInputField #917
Labels
Comments
I don't know if this is the fix but I was able to deal with it by replacing that with:
Of course that makes the parameter newText obsolete, but... |
This was referenced May 14, 2018
david-c-kline
pushed a commit
that referenced
this issue
May 15, 2018
[dev] fix #917 and duplicate kbd backspace issues
This was released in the 2017.4.0.0 release candidate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a textbox with the KeyboardInputField script on it with the Keyboard prefab in the scene.
When I tap in the textbox and start inputting characters and then decide to backspace until the textbox is cleared out, the last character (which is the first character inputted) is not cleared from the textbox. Although, The textbox in the Keyboard prefab is cleared entirely. When I add a new character, it replaces the uncleared character from the textbox.
I was able to resolve the problem by removing the if statement from the following code in KeyboardInputField:
The text was updated successfully, but these errors were encountered: