From d8111ad20c72990c7818c9e12df8227f978ed43d Mon Sep 17 00:00:00 2001 From: sha1n Date: Sat, 17 Jan 2026 16:18:51 +0200 Subject: [PATCH] fix: use full block character for progress bar fill MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default fill character was using the Lower Seven Eighths Block (▇) which has inconsistent height compared to the Light Shade (░) used for the blank portion. Changed to Full Block (█) for uniform appearance. --- progress_bar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progress_bar.go b/progress_bar.go index 83f60d7..4c2a089 100644 --- a/progress_bar.go +++ b/progress_bar.go @@ -17,7 +17,7 @@ const ( DefaultProgressBarRightBorder = '\u2595' // DefaultProgressBarFill default progress bar fill character - DefaultProgressBarFill = '\u2587' + DefaultProgressBarFill = '\u2588' // DefaultProgressBarBlank default progress bar fill character DefaultProgressBarBlank = '\u2591'