Allow fast scroll containers to shrink

This commit is contained in:
Stu Leak 2026-01-04 12:54:41 -05:00
parent 5d638bfa62
commit bf355f3482

View File

@ -552,6 +552,7 @@ func NewFastVScroll(content fyne.CanvasObject) *FastVScroll {
f := &FastVScroll{
scroll: container.NewVScroll(content),
}
f.scroll.SetMinSize(fyne.NewSize(0, 0))
f.ExtendBaseWidget(f)
return f
}