From d0890ea10d911b87b7414f028feba7cfc9f33a5a Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 4 Jan 2026 05:33:34 -0500 Subject: [PATCH] Add padding to queue tile --- internal/ui/mainmenu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/mainmenu.go b/internal/ui/mainmenu.go index d61bad6..35e02d1 100644 --- a/internal/ui/mainmenu.go +++ b/internal/ui/mainmenu.go @@ -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)