From db1beab1d7bd37948155ab741caae079053f92a8 Mon Sep 17 00:00:00 2001 From: Tobias Markus Date: Sat, 18 Jan 2014 22:45:49 +0100 Subject: [PATCH] Subject: progress bar: increase update frequency to 10Hz Increasing the update frequency of the progress bar to 10Hz greatly improves the visual appearance of the progress bar (at least in my impression). Signed-off-by: Tobias Markus --- src/tool_cb_prg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tool_cb_prg.c b/src/tool_cb_prg.c index 6e6f50359..cc9091abe 100644 --- a/src/tool_cb_prg.c +++ b/src/tool_cb_prg.c @@ -61,8 +61,8 @@ int tool_progress_cb(void *clientp, /* we've come this far */ point = dlnow + ulnow + bar->initial_size; - if(bar->calls && (tvdiff(now, bar->prevtime) < 200L) && point < total) - /* after first call, limit progress-bar updating to 5 Hz */ + if(bar->calls && (tvdiff(now, bar->prevtime) < 100L) && point < total) + /* after first call, limit progress-bar updating to 10 Hz */ /* update when we're at 100% even if last update is less than 200ms ago */ return 0; -- 2.40.0