Open
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
When creating a list of labels with variable height using list.SetItemHeight(id, label.MinSize().Height)
the returned height from the label is bigger than the label content if the first label wraps the content otherwise the list renders properly
How to reproduce
Run example code
Screenshots
Example code
package main
import (
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
"fyne.io/fyne/v2/widget"
)
var data = []string { "Worlds As Sed facilisis nunc non nunc pulvinar commodo. Nunc pretium nisi eu suscipit dignissim. Praesent libero tortor, semper a metus quis, eleifend auctor eros. Nullam ut maximus nibh.", "Ipsum", "Dolor" }
func main() {
myApp := app.New()
myWindow := myApp.NewWindow("window")
var list *widget.List
list = widget.NewList(
func() int {
return len(data)
},
func() fyne.CanvasObject {
label := widget.NewLabel("")
label.Wrapping = fyne.TextWrapWord
return label
},
func(id widget.ListItemID, canvasObject fyne.CanvasObject) {
label := canvasObject.(*widget.Label)
label.Text = data[id]
label.Refresh()
list.SetItemHeight(id, label.MinSize().Height)
},
)
myWindow.SetContent(list)
myWindow.ShowAndRun()
}
Fyne version
2.5.4
Go compiler version
1.24.0
Operating system and version
Arch Linux with Hyprland
Additional Information
The list renders fine if you scroll to the bottom (triggering the update for the other items)