Skip to content

Commit

Permalink
Progress bar style update
Browse files Browse the repository at this point in the history
  • Loading branch information
abdolence committed Aug 20, 2024
1 parent 15a74f8 commit 27643fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/copy_command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ pub async fn command_copy(
let bar = ProgressBar::new(1);
bar.set_style(
ProgressStyle::with_template(
"{spinner:.green} [{elapsed_precise}] [{wide_bar:.cyan/blue}] {pos:>3}/{len:3}",
"{spinner:.green} [{elapsed_precise}] [{wide_bar:.green/dim.blue}] {pos:>3}/{len:3}",
)?
.progress_chars("◉>◯"),
.progress_chars("━>━"),
);
bar.enable_steady_tick(Duration::from_millis(100));
let app_reporter = AppReporter::from(&bar);
Expand Down

0 comments on commit 27643fa

Please sign in to comment.