We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 727f1a5 commit abc56b9Copy full SHA for abc56b9
rust/stackable-cockpit/src/lib.rs
@@ -12,10 +12,8 @@ pub mod utils;
12
pub mod xfer;
13
14
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")
+ ProgressStyle::with_template("{span_child_prefix}Progress: {wide_bar} {pos}/{len}")
+ .expect("valid progress template")
19
});
20
21
pub static PROGRESS_SPINNER_STYLE: LazyLock<ProgressStyle> = LazyLock::new(|| {
0 commit comments