From d71a50eff1f07ee76bf8bff1bfd66031c63b57bd Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 30 Nov 2025 00:52:26 -0500 Subject: [PATCH] Clarify direct conversion in stats and queue list --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 697d8cc..7ce69cf 100644 --- a/main.go +++ b/main.go @@ -212,7 +212,7 @@ func (s *appState) updateStatsBar() { } else if s.convertBusy { // Reflect direct conversion as an active job in the stats bar running = 1 - jobTitle = "Active conversion" + jobTitle = fmt.Sprintf("Direct convert: %s", filepath.Base(s.source.Path)) progress = 0 } @@ -449,7 +449,7 @@ func (s *appState) refreshQueueView() { ID: "active-convert", Type: queue.JobTypeConvert, 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()), Progress: 0, }}, jobs...)