Merge pull request #767 from ctrlaltca/oracle_progressbar

Fix oracle progressbar; fix #764
This commit is contained in:
Zach 2015-02-21 13:02:03 -05:00
commit 65412800f8

View file

@ -298,7 +298,7 @@ bool LoadSetsPage::validatePage()
void LoadSetsPage::actDownloadProgressSetsFile(qint64 received, qint64 total)
{
if(total > 0 && progressBar->maximum()==0)
if(total > 0)
{
progressBar->setMaximum(total);
progressBar->setValue(received);