From 1103fb3d00e21f4671f66b2c560f05f44dc6c960 Mon Sep 17 00:00:00 2001 From: AnnatarHe Date: Sat, 10 Jan 2026 08:39:54 +0800 Subject: [PATCH] fix(stloader): slow down shine animation interval for better UX Increase DefaultShineInterval from 32ms to 80ms to make the loading animation more comfortable to watch. The previous 31 FPS was too fast and caused visual strain. Co-Authored-By: Claude Opus 4.5 --- stloader/loader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stloader/loader.go b/stloader/loader.go index eb9e4b3..2085668 100644 --- a/stloader/loader.go +++ b/stloader/loader.go @@ -20,7 +20,7 @@ var DefaultSymbols = []string{"⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", " // Default configuration values const ( DefaultSpinInterval = 200 * time.Millisecond - DefaultShineInterval = 32 * time.Millisecond + DefaultShineInterval = 80 * time.Millisecond ) // LoaderConfig holds configuration options for the loader