Commit 514c414c authored by Fabio Bas's avatar Fabio Bas
Browse files

Fix oracle progressbar; fix #764

parent 06e53275
...@@ -298,7 +298,7 @@ bool LoadSetsPage::validatePage() ...@@ -298,7 +298,7 @@ bool LoadSetsPage::validatePage()
void LoadSetsPage::actDownloadProgressSetsFile(qint64 received, qint64 total) void LoadSetsPage::actDownloadProgressSetsFile(qint64 received, qint64 total)
{ {
if(total > 0 && progressBar->maximum()==0) if(total > 0)
{ {
progressBar->setMaximum(total); progressBar->setMaximum(total);
progressBar->setValue(received); progressBar->setValue(received);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment