forked from Leak_Technologies/VideoTools
Count active direct convert in main menu queue label
This commit is contained in:
parent
14de3d494d
commit
26c4af25af
4
main.go
4
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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user