From 03e036be51fef9a2cfdc2f82273bfff8302dfb45 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 30 Dec 2025 16:06:10 -0500 Subject: [PATCH] Update output filename preview in real-time when toggling suffix - Output hint now updates immediately when checking/unchecking suffix checkbox - User can see "video.mp4" vs "video-convert.mp4" change live - Improves UX by providing instant visual feedback Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.go b/main.go index 3c2c463..aa8caac 100644 --- a/main.go +++ b/main.go @@ -6628,6 +6628,10 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject { if !state.convert.UseAutoNaming { applyAutoName(false) } + // Update output hint to show the change immediately + if outputHint != nil { + outputHint.SetText(fmt.Sprintf("Output file: %s", state.convert.OutputFile())) + } }) appendSuffixCheck.Checked = state.convert.AppendSuffix