Fix queue UI refresh

This commit is contained in:
Stu Leak 2025-12-23 22:42:45 -05:00
parent e5dcde953b
commit c8bcaf476c

View File

@ -79,9 +79,9 @@ func (s *StripedProgress) StartAnimation() {
if app == nil { if app == nil {
continue continue
} }
app.Driver().RunOnMain(func() { app.Driver().DoFromGoroutine(func() {
s.Refresh() s.Refresh()
}) }, false)
case <-stop: case <-stop:
return return
} }