Fix config reload and inspect status ticker build errors

This commit is contained in:
Stu Leak 2025-12-09 00:40:52 -05:00
parent 048c906321
commit 50fe10d9b3

View File

@ -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
}
}()