We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I try to select text in an entry and move the cursor too fast the start of the selection is shifted
No response
package main
import ( "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/widget" )
func main() { a := app.New() w := a.NewWindow("Test")
entry := widget.NewEntry() entry.SetText("0123456789") w.SetContent(entry) w.ShowAndRun()
}
develop 9bcdda0
1.18.4
Windows 11
The text was updated successfully, but these errors were encountered:
fix fyne-io#3804 correctly calculate the start position
9d096ba
Merge pull request #3805 from NicolasPerrenoud/entry_selection
a7b727c
fix #3804 correctly calculate the start position
Fix landed on develop, thanks so much @NicolasPerrenoud
develop
Sorry, something went wrong.
cbff586
No branches or pull requests
Checklist
Describe the bug
When I try to select text in an entry and move the cursor too fast the start of the selection is shifted
How to reproduce
Screenshots
No response
Example code
package main
import (
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/widget"
)
func main() {
a := app.New()
w := a.NewWindow("Test")
}
Fyne version
develop 9bcdda0
Go compiler version
1.18.4
Operating system and version
Windows 11
Additional Information
No response
The text was updated successfully, but these errors were encountered: