From 52dce047b78b174a369720143d265c5e02770a84 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- 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 }