Clarify direct conversion in stats and queue list

This commit is contained in:
Stu Leak 2025-11-30 00:52:26 -05:00
parent 2021ea07bf
commit 54fe2d1c81

View File

@ -212,7 +212,7 @@ func (s *appState) updateStatsBar() {
} else if s.convertBusy { } else if s.convertBusy {
// Reflect direct conversion as an active job in the stats bar // Reflect direct conversion as an active job in the stats bar
running = 1 running = 1
jobTitle = "Active conversion" jobTitle = fmt.Sprintf("Direct convert: %s", filepath.Base(s.source.Path))
progress = 0 progress = 0
} }
@ -449,7 +449,7 @@ func (s *appState) refreshQueueView() {
ID: "active-convert", ID: "active-convert",
Type: queue.JobTypeConvert, Type: queue.JobTypeConvert,
Status: queue.JobStatusRunning, Status: queue.JobStatusRunning,
Title: "Active conversion", Title: fmt.Sprintf("Direct convert: %s", filepath.Base(s.source.Path)),
Description: fmt.Sprintf("Output: %s", s.convert.OutputFile()), Description: fmt.Sprintf("Output: %s", s.convert.OutputFile()),
Progress: 0, Progress: 0,
}}, jobs...) }}, jobs...)