From 64130823655c30fd2f5d74cba3f5e07ae770ec3c Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Mon, 29 Dec 2025 01:30:33 -0500 Subject: [PATCH] Hide benchmark indicator when user clicks Apply Benchmark MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit User feedback: Benchmark indicator should disappear entirely once applied, not just show "Applied" status. Changes: - Modified Apply Benchmark button callback to hide the entire indicator - Removed code that changed text/color and disabled button - Cleaner UI - indicator completely disappears after applying settings 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- main.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/main.go b/main.go index 41e5cdb..89ab19b 100644 --- a/main.go +++ b/main.go @@ -6307,10 +6307,8 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject { benchmarkApplyBtn = widget.NewButton("Apply Benchmark", func() { state.applyBenchmarkRecommendation(encoder, preset) - benchmarkStatus.Text = "Benchmark: Applied" - benchmarkStatus.Color = utils.MustHex("#4CE870") - benchmarkStatus.Refresh() - benchmarkApplyBtn.Disable() + // Hide the entire indicator once applied + benchmarkIndicator.Hide() }) benchmarkApplyBtn.Importance = widget.MediumImportance