Add padding to queue tile

This commit is contained in:
Stu Leak 2026-01-04 05:33:34 -05:00
parent 636854eba8
commit 3f325985ae

View File

@ -184,7 +184,7 @@ func buildQueueTile(completed, total int, queueColor, textColor color.Color, onC
text.TextStyle = fyne.TextStyle{Monospace: true, Bold: true}
text.TextSize = 14
tile := container.NewMax(rect, container.NewCenter(text))
tile := container.NewMax(rect, container.NewPadded(container.NewCenter(text)))
// Make it tappable
tappable := NewTappable(tile, onClick)