From 4a58a22b818cf02ec2d8a589c7c0bc823a826299 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 30 Dec 2025 16:40:44 -0500 Subject: [PATCH] Fix suffix checkbox to regenerate name from source instead of keeping existing value --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 6de38c5..973409a 100644 --- a/main.go +++ b/main.go @@ -6626,7 +6626,8 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject { appendSuffixCheck := widget.NewCheck("Append \"-convert\" to filename", func(checked bool) { state.convert.AppendSuffix = checked // Recalculate and update the output base to reflect the suffix change - newBase := state.resolveOutputBase(src, !state.convert.UseAutoNaming) + // Always pass false for keepExisting to regenerate from source + newBase := state.resolveOutputBase(src, false) updatingOutput = true state.convert.OutputBase = newBase outputEntry.SetText(newBase)