From 4ad62b5d576a5636b22f591823dfc4eaae242bc5 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Tue, 9 Dec 2025 00:40:52 -0500 Subject: [PATCH] Fix config reload and inspect status ticker build errors --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 9d6e2ea..76c2396 100644 --- a/main.go +++ b/main.go @@ -3585,7 +3585,7 @@ func buildConvertView(state *appState, src *videoSource) fyne.CanvasObject { return } state.convert = cfg - state.showConvertView() + state.showConvertView(state.source) }, state.window) }) saveCfgBtn := widget.NewButton("Save Config", func() { @@ -7472,7 +7472,7 @@ func buildInspectView(state *appState) fyne.CanvasObject { for range ticker.C { fyne.CurrentApp().Driver().DoFromGoroutine(func() { updateInspectStatus() - }) + }, false) // Optional stop condition could be added if needed } }()