We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fyne-io
andydotxyz
Jacalz
dweymouth
toaster
Learn more about funding links in repositories.
Report abuse
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
MultilineEntry with text wrapping panics when removing letters, because it suddenly move the cursor to a invalid position.
Steps to reproduce the behaviour:
Backspace
func main() { a := app.New() w := a.NewWindow("Hello") w.Resize(fyne.NewSize(200, 200)) e := widget.NewMultiLineEntry() e.Wrapping = fyne.TextWrapWord e.SetText("Hello\ntesting\ntesting\ntesting\ntesting...") w.SetContent(container.NewVBox(e)) w.ShowAndRun() }
The text was updated successfully, but these errors were encountered:
Fixed on develop
develop
Sorry, something went wrong.
No branches or pull requests
Describe the bug:
MultilineEntry with text wrapping panics when removing letters, because it suddenly move the cursor to a invalid position.
To Reproduce:
Steps to reproduce the behaviour:
Backspace
key again.Screenshots:
multiline_bug.mp4
Example code:
Device (please complete the following information):
The text was updated successfully, but these errors were encountered: