From 79727f1780db4ba5d9c627930d08fb47ea98dab3 Mon Sep 17 00:00:00 2001 From: Antoine Gaudreau Simard Date: Mon, 4 May 2026 14:53:33 -0400 Subject: [PATCH] Honor the spinner rate configurate with sync spinner --- pkg/gui/controllers/helpers/app_status_helper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/gui/controllers/helpers/app_status_helper.go b/pkg/gui/controllers/helpers/app_status_helper.go index 89de221b8..e7a75f17c 100644 --- a/pkg/gui/controllers/helpers/app_status_helper.go +++ b/pkg/gui/controllers/helpers/app_status_helper.go @@ -111,7 +111,7 @@ func (self *AppStatusHelper) renderAppStatus() { func (self *AppStatusHelper) renderAppStatusSync(stop chan struct{}) { go func() { - ticker := time.NewTicker(time.Millisecond * 50) + ticker := time.NewTicker(time.Millisecond * time.Duration(self.c.UserConfig().Gui.Spinner.Rate)) defer ticker.Stop() // Forcing a re-layout and redraw after we added the waiting status;