Skip to content

Commit abc56b9

Browse files
committed
remove progress bar color
1 parent 727f1a5 commit abc56b9

File tree

1 file changed

+2
-4
lines changed
  • rust/stackable-cockpit/src

1 file changed

+2
-4
lines changed

rust/stackable-cockpit/src/lib.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ pub mod utils;
1212
pub mod xfer;
1313

1414
pub static PROGRESS_BAR_STYLE: LazyLock<ProgressStyle> = LazyLock::new(|| {
15-
ProgressStyle::with_template(
16-
"{span_child_prefix}Progress: {wide_bar:.magenta/cyan} {pos}/{len}",
17-
)
18-
.expect("valid progress template")
15+
ProgressStyle::with_template("{span_child_prefix}Progress: {wide_bar} {pos}/{len}")
16+
.expect("valid progress template")
1917
});
2018

2119
pub static PROGRESS_SPINNER_STYLE: LazyLock<ProgressStyle> = LazyLock::new(|| {

0 commit comments

Comments
 (0)