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
{{ message }}
This repository was archived by the owner on Nov 5, 2022. It is now read-only.
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:])