Fix oracle progressbar; fix #764

This commit is contained in:
Fabio Bas 2015-02-21 10:46:16 +01:00
parent 06e5327595
commit 514c414cfc

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);