From 627fd6a0558b1ba1a19777015b9a60f411d59c0a Mon Sep 17 00:00:00 2001 From: LukaDev <47296785+lukadev-0@users.noreply.github.com> Date: Fri, 27 Dec 2024 16:29:33 +0100 Subject: [PATCH] fix: spinner tick chars --- src/cli/reporters.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/reporters.rs b/src/cli/reporters.rs index 8d71024..e4851ad 100644 --- a/src/cli/reporters.rs +++ b/src/cli/reporters.rs @@ -13,7 +13,7 @@ use pesde::reporters::{ DownloadProgressReporter, DownloadsReporter, PatchProgressReporter, PatchesReporter, }; -pub const TICK_CHARS: &str = "⣷⣯⣟⣿⢿⣻⣽⣾"; +pub const TICK_CHARS: &str = "⣷⣯⣟⡿⢿⣻⣽⣾"; pub fn root_progress_style() -> ProgressStyle { ProgressStyle::with_template("{prefix:.dim}{msg:>8.green} {spinner} [{elapsed_precise}]")