Count active direct convert in main menu queue label

This commit is contained in:
Stu Leak 2025-11-30 01:07:20 -05:00
parent 14de3d494d
commit 26c4af25af

View File

@ -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)