From 26c4af25af4f00519db94c0b58c751beb9ae006b Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 30 Nov 2025 01:07:20 -0500 Subject: [PATCH] Count active direct convert in main menu queue label --- main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.go b/main.go index db762ad..bd14998 100644 --- a/main.go +++ b/main.go @@ -243,6 +243,10 @@ func (s *appState) updateQueueButtonLabel() { return } completed, total := s.queueProgressCounts() + // Include active direct conversion in totals + if s.convertBusy { + total++ + } label := "View Queue" if total > 0 { label = fmt.Sprintf("View Queue %d/%d", completed, total)