You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
because the cart position may move after the "func (t *TextBoxController) Backspace() { " called,
in line 465 of textbox_controller.go, the end may be larger than len(text),and it will crash.
fix:
add
if s.end > len(text) {s.end = len(text)}
before
copy(text[s.start:], text[s.end:])
because the cart position may move after the "func (t *TextBoxController) Backspace() { " called,
in line 465 of textbox_controller.go, the end may be larger than len(text),and it will crash.
fix:
add
if s.end > len(text) {s.end = len(text)}
before
copy(text[s.start:], text[s.end:])