Skip to content

Commit

Permalink
Print newline after completed progress bar
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Oct 14, 2023
1 parent 74b17e5 commit 445a88a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ pub fn run<I: BufRead, O: Write + Send>(input: I, output: O, config: Config) ->
let mut pr = gifski::progress::ProgressBar::new(count);
let result = writer.write(output, &mut pr);
pr.finish();
println!();
result
} else {
let mut pr = gifski::progress::NoProgress {};
Expand Down

0 comments on commit 445a88a

Please sign in to comment.