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
My enviroment
Debian 12
Kde 5
the newest of fyne
This is my code.
How to reproduce
run this program
then resize window slowly
you can see the inpur box disappear ont side
Screenshots
Example code
package main
import (
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/container"
"fyne.io/fyne/v2/widget"
)
func makeUI() (*widget.Label, *widget.Entry) {
out := widget.NewLabel("Hello world!")
in := widget.NewEntry()
in.OnChanged = func(content string) {
out.SetText("Hello " + content + "!")
}
return out, in
}
func main() {
app := app.New()
win := app.NewWindow("Hello Person")
win.SetContent(container.NewVBox(makeUI()))
win.ShowAndRun()
}
Fyne version
2.5.5
Go compiler version
1.24.0
Operating system and version
Debian12 kde5
Additional Information
No response