Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
65412800
Commit
65412800
authored
Feb 21, 2015
by
Zach
Browse files
Merge pull request #767 from ctrlaltca/oracle_progressbar
Fix oracle progressbar; fix #764
parents
06e53275
514c414c
Changes
1
Hide whitespace changes
Inline
Side-by-side
oracle/src/oraclewizard.cpp
View file @
65412800
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment