From 0b0a123d8346b70d3aec6f3bc00d1e652fdb3178 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 30 Dec 2025 22:00:26 -0500 Subject: [PATCH] fix(author): Auto-navigate to queue when starting DVD authoring When user clicks "COMPILE TO DVD", now automatically navigates to the queue view so they can immediately see the job progress. This prevents confusion about how to access the queue during authoring. Fixes issue where users couldn't find the queue while authoring was in progress - the queue was accessible via the button, but now the navigation is automatic for better UX. --- author_module.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/author_module.go b/author_module.go index ae93e5c..e43d8f3 100644 --- a/author_module.go +++ b/author_module.go @@ -1710,6 +1710,10 @@ func (s *appState) addAuthorToQueue(paths []string, region, aspect, title, outpu if startNow && !s.jobQueue.IsRunning() { s.jobQueue.Start() } + // Navigate to queue view when starting a job immediately + if startNow { + s.showQueue() + } return nil } @@ -1738,6 +1742,10 @@ func (s *appState) addAuthorVideoTSToQueue(videoTSPath, title, outputPath string if startNow && !s.jobQueue.IsRunning() { s.jobQueue.Start() } + // Navigate to queue view when starting a job immediately + if startNow { + s.showQueue() + } return nil }