Skip to content

Commit 284460e

Browse files
authored
Merge pull request #210 from shelltime/fix/loader-shine-interval-too-fast
fix(stloader): slow down shine animation interval for better UX
2 parents 863689b + 1103fb3 commit 284460e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stloader/loader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var DefaultSymbols = []string{"⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "
2020
// Default configuration values
2121
const (
2222
DefaultSpinInterval = 200 * time.Millisecond
23-
DefaultShineInterval = 32 * time.Millisecond
23+
DefaultShineInterval = 80 * time.Millisecond
2424
)
2525

2626
// LoaderConfig holds configuration options for the loader

0 commit comments

Comments
 (0)