Fix queue progress calc type

This commit is contained in:
Stu Leak 2025-12-17 02:38:55 -05:00
parent 1eb2d11ccd
commit 320f522d85

View File

@ -90,7 +90,7 @@ func (r *stripedProgressRenderer) Layout(size fyne.Size) {
r.bg.Resize(size)
r.bg.Move(fyne.NewPos(0, 0))
fillWidth := size.Width * r.bar.progress
fillWidth := size.Width * float32(r.bar.progress)
fillSize := fyne.NewSize(fillWidth, size.Height)
r.fill.Resize(fillSize)