From 4af5f2507a690fcbbda3420c19c4ace95afac3f6 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 19 Dec 2024 15:46:43 -0500 Subject: [PATCH] ProgressWriter: Updates default characters --- project/src/utils/ProgressWriter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/utils/ProgressWriter.ts b/project/src/utils/ProgressWriter.ts index 76c5fc75..6d1a9674 100644 --- a/project/src/utils/ProgressWriter.ts +++ b/project/src/utils/ProgressWriter.ts @@ -8,7 +8,7 @@ export class ProgressWriter { private barEmptyChar: string; private maxBarLength: number; - constructor(total: number, maxBarLength = 25, barFillChar = "\u25A0", barEmptyChar = " ") { + constructor(total: number, maxBarLength = 25, barFillChar = "\u2593", barEmptyChar = "\u2591") { if (total <= 0) { throw new Error("Total must be a positive number."); }