This commit is contained in:
guinux 2017-04-15 21:10:04 +02:00
parent 06fdcdc7bd
commit c071258c24
1 changed files with 2 additions and 2 deletions

View File

@ -1351,7 +1351,7 @@ namespace Pamac {
text.append (previous_textbar);
timer.start ();
} else {
if (timer.elapsed () > 0) {
if (timer.elapsed () > 0.1) {
download_rate = ((download_rate * rates_nb) + (uint64) ((xfered - previous_xfered) / timer.elapsed ())) / (rates_nb + 1);
rates_nb++;
}
@ -1400,7 +1400,7 @@ namespace Pamac {
fraction = 1;
previous_filename = "";
} else {
if (timer.elapsed () > 0) {
if (timer.elapsed () > 0.1) {
download_rate = ((download_rate * rates_nb) + (uint64) ((xfered - previous_xfered) / timer.elapsed ())) / (rates_nb + 1);
rates_nb++;
}