diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-12-27 18:04:11 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-12-27 18:04:11 -0500 |
commit | 68ba0d4a215f8c99649779e71cd9ff31eb210edc (patch) | |
tree | a9907f15d5b6dffabd9a6ed3fb310072989f8fc1 /internal/ui | |
parent | 3b8fa0766a0050c0dd026be5d6a1ce2827956530 (diff) |
Fix BinaryFill Example
Diffstat (limited to 'internal/ui')
-rw-r--r-- | internal/ui/style.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ui/style.go b/internal/ui/style.go index 71bff48..f6f7169 100644 --- a/internal/ui/style.go +++ b/internal/ui/style.go @@ -61,7 +61,7 @@ func init() { baseSliderOpts := []progress.Option{ progress.WithColorProfile(ColorProfile()), progress.WithoutPercentage(), - // progress.WithFillCharacters(" ", "█"), // for legacy look + // progress.WithBinaryFill(), // uncomment for legacy look } style = StyleSheet{ |