Skip to content

Commit 24d6b7e

Browse files
committed
process: fix refresh rate for progress bars
1 parent d68913a commit 24d6b7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ impl Process {
215215
};
216216

217217
match term {
218-
Some(t) => ProgressDrawTarget::term_like(Box::new(t)),
218+
Some(t) => ProgressDrawTarget::term_like_with_hz(Box::new(t), 20),
219219
None => ProgressDrawTarget::hidden(),
220220
}
221221
}

0 commit comments

Comments
 (0)