Skip to content

Commit

Permalink
Small improvement in install presentation. No longer temporarily rese…
Browse files Browse the repository at this point in the history
…ts to 0.
  • Loading branch information
xsacha committed Aug 29, 2014
1 parent d722dd6 commit e0f62d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/install.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,8 @@ bool InstallNet::checkLogin() {

void InstallNet::installProgress(qint64 pread, qint64)
{
if (pread == 0)
return;
_dlBytes = 50*pread;
setDGProgress(qMin((int)50, (int)(_dlBytes / _dlTotal)));
}
Expand Down

0 comments on commit e0f62d7

Please sign in to comment.