Count active direct convert in main menu queue label
This commit is contained in:
parent
851423a6b7
commit
118056affb
4
main.go
4
main.go
|
|
@ -243,6 +243,10 @@ func (s *appState) updateQueueButtonLabel() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
completed, total := s.queueProgressCounts()
|
completed, total := s.queueProgressCounts()
|
||||||
|
// Include active direct conversion in totals
|
||||||
|
if s.convertBusy {
|
||||||
|
total++
|
||||||
|
}
|
||||||
label := "View Queue"
|
label := "View Queue"
|
||||||
if total > 0 {
|
if total > 0 {
|
||||||
label = fmt.Sprintf("View Queue %d/%d", completed, total)
|
label = fmt.Sprintf("View Queue %d/%d", completed, total)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user