Closed as not planned
Description
Checklist
- I have searched the issue tracker for open issues that relate to the same problem, before opening a new one.
- This issue only relates to a single bug. I will open new issues for any other problems.
Describe the bug
Entry Widget, after getting the focus, modify the height or width of the window, there will be a missing edge
How to reproduce
Slowly changing the window height or width will recur
Screenshots
Example code
package main
import (
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/widget"
)
func main() {
a := app.New()
w := a.NewWindow("Test")
w.SetContent(widget.NewEntry())
w.ShowAndRun()
}
Fyne version
v2.5.5
Go compiler version
go1.23.6 windows/amd64
Operating system and version
go1.23.6 windows/amd64
Additional Information
No response