From 6e9bcdb9b324a4587f19da272d5f5f92b9abfe5a Mon Sep 17 00:00:00 2001 From: Moritz Poldrack <33086936+mpldr@users.noreply.github.com> Date: Thu, 9 Nov 2023 01:42:40 +0100 Subject: [PATCH] progressbar: make start and end seamless (#1042) --- progressbar/progressbar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progressbar/progressbar.go b/progressbar/progressbar.go index e522bb3f..c1a36c43 100644 --- a/progressbar/progressbar.go +++ b/progressbar/progressbar.go @@ -291,7 +291,7 @@ func OptionShowDescriptionAtLineEnd() Option { } } -var defaultTheme = Theme{Saucer: "█", SaucerPadding: " ", BarStart: "|", BarEnd: "|"} +var defaultTheme = Theme{Saucer: "█", SaucerPadding: " ", BarStart: "▕", BarEnd: "▏"} // NewOptions constructs a new instance of ProgressBar, with any options you specify func NewOptions(max int, options ...Option) *ProgressBar {