From: Tobias Markus Date: Sat, 18 Jan 2014 21:45:49 +0000 (+0100) Subject: Subject: progress bar: increase update frequency to 10Hz X-Git-Tag: curl-7_35_0~42 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db1beab1d7bd37948155ab741caae079053f92a8;p=thirdparty%2Fcurl.git 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 --- diff --git a/src/tool_cb_prg.c b/src/tool_cb_prg.c index 6e6f503596..cc9091abe9 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;